Trait NormalizeExt

Source
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§

Source

fn normalize_projections( &self, infcx: &mut InferCtxt<'_, '_, '_>, ) -> QueryResult<Self>

Source

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.

Implementors§