pub trait NormalizeExt: TypeFoldable {
// Required methods
fn normalize_projections(
&self,
infcx: &mut InferCtxt<'_, '_, '_>,
) -> QueryResult<Self>;
fn normalize_sorts<'tcx>(
&self,
def_id: DefId,
genv: GlobalEnv<'_, 'tcx>,
infcx: &InferCtxt<'tcx>,
) -> QueryResult<Self>;
}
Required Methods§
fn normalize_projections( &self, infcx: &mut InferCtxt<'_, '_, '_>, ) -> QueryResult<Self>
Sourcefn normalize_sorts<'tcx>(
&self,
def_id: DefId,
genv: GlobalEnv<'_, 'tcx>,
infcx: &InferCtxt<'tcx>,
) -> QueryResult<Self>
fn normalize_sorts<'tcx>( &self, def_id: DefId, genv: GlobalEnv<'_, 'tcx>, infcx: &InferCtxt<'tcx>, ) -> QueryResult<Self>
Normalize projections but only inside sorts
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.