pub trait SpannedTypeVisitor<'tcx> {
type Result: VisitorResult = ();
// Required method
fn visit(
&mut self,
span: Span,
value: impl TypeVisitable<TyCtxt<'tcx>>,
) -> Self::Result;
}
Provided Associated Types§
type Result: VisitorResult = ()
Required Methods§
Object Safety§
This trait is not object safe.