pub trait TraitEngineExt<'tcx> {
    // Required method
    fn new(infcx: &InferCtxt<'tcx>) -> Box<Self>;
}

Required Methods§

source

fn new(infcx: &InferCtxt<'tcx>) -> Box<Self>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'tcx> TraitEngineExt<'tcx> for dyn TraitEngine<'tcx>