pub trait SpannedTypeVisitor<'tcx> {
    type BreakTy = !;

    // Required method
    fn visit(
        &mut self,
        span: Span,
        value: impl TypeVisitable<TyCtxt<'tcx>>
    ) -> ControlFlow<Self::BreakTy>;
}

Provided Associated Types§

Required Methods§

source

fn visit( &mut self, span: Span, value: impl TypeVisitable<TyCtxt<'tcx>> ) -> ControlFlow<Self::BreakTy>

Object Safety§

This trait is not object safe.

Implementors§