pub trait Subst<'tcx>: Sized {
    type Inner;

    fn subst(self, tcx: TyCtxt<'tcx>, substs: &[GenericArg<'tcx>]) -> Self::Inner;
}

Required Associated Types

Required Methods

Implementors