pub trait InferCtxtSelectExt<'tcx> {
    // Required method
    fn select_in_new_trait_solver(
        &self,
        obligation: &PolyTraitObligation<'tcx>
    ) -> SelectionResult<'tcx, Selection<'tcx>>;
}

Required Methods§

source

fn select_in_new_trait_solver( &self, obligation: &PolyTraitObligation<'tcx> ) -> SelectionResult<'tcx, Selection<'tcx>>

Implementors§

source§

impl<'tcx> InferCtxtSelectExt<'tcx> for InferCtxt<'tcx>