pub trait ProofTreeInferCtxtExt<'tcx> {
// Required method
fn visit_proof_tree<V: ProofTreeVisitor<'tcx>>(
&self,
goal: Goal<'tcx, Predicate<'tcx>>,
visitor: &mut V
) -> ControlFlow<V::BreakTy>;
}Required Methods§
fn visit_proof_tree<V: ProofTreeVisitor<'tcx>>( &self, goal: Goal<'tcx, Predicate<'tcx>>, visitor: &mut V ) -> ControlFlow<V::BreakTy>
Object Safety§
This trait is not object safe.