pub(crate) trait IntoWithTcx<T> {
    // Required method
    fn into_tcx(self, tcx: TyCtxt<'_>) -> T;
}

Required Methods§

source

fn into_tcx(self, tcx: TyCtxt<'_>) -> T

Implementors§

source§

impl<T, U> IntoWithTcx<U> for T
where U: FromWithTcx<T>,