`tcx.impl_trait_header` currently returns `EarlyBinder<ImplTraitHeader>`. Move this `EarlyBinder` into the `ImplTraitHeader` to only wrap the `TraitRef`: ```rust pub struct ImplTraitHeader<'tcx> { pub trait_ref: EarlyBinder<TraitRef<'tcx>>, pub polarity: ImplPolarity, pub unsafety: Unsafety, } ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"Y-Nak"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->