pub trait VisitorWithSpan {
// Required method
fn current_span(&mut self) -> &mut Span;
}
Required Methods§
fn current_span(&mut self) -> &mut Span
Implementors§
impl VisitorWithSpan for CheckGenericsVisitor<'_>
impl<V: VisitorWithSpan> VisitorWithSpan for DontLeakImplDetails<V>
impl<V: VisitorWithSpan> VisitorWithSpan for VisitWithBinderStack<V>
Combo impl to be able to use VisitWithSpan
and VisitWithBinderStack
together.