Trait ScopedVisitor

Source
pub(crate) trait ScopedVisitor: Sized {
Show 13 methods // Required methods fn is_box(&self, segment: &PathSegment) -> bool; fn enter_scope(&mut self, kind: ScopeKind) -> ControlFlow<()>; // Provided methods fn exit_scope(&mut self) { ... } fn wrap(self) -> ScopedVisitorWrapper<Self> { ... } fn on_implicit_param( &mut self, _ident: Ident, _kind: ParamKind, _node_id: NodeId, ) { ... } fn on_generic_param(&mut self, _param: &GenericParam) { ... } fn on_refine_param(&mut self, _param: &RefineParam) { ... } fn on_enum_variant(&mut self, _variant: &VariantDef) { ... } fn on_fn_sig(&mut self, _fn_sig: &FnSig) { ... } fn on_fn_output(&mut self, _output: &FnOutput) { ... } fn on_loc(&mut self, _loc: Ident, _node_id: NodeId) { ... } fn on_path(&mut self, _path: &ExprPath) { ... } fn on_base_sort(&mut self, _sort: &BaseSort) { ... }
}

Required Methods§

Source

fn is_box(&self, segment: &PathSegment) -> bool

Source

fn enter_scope(&mut self, kind: ScopeKind) -> ControlFlow<()>

Provided Methods§

Source

fn exit_scope(&mut self)

Source

fn wrap(self) -> ScopedVisitorWrapper<Self>

Source

fn on_implicit_param( &mut self, _ident: Ident, _kind: ParamKind, _node_id: NodeId, )

Source

fn on_generic_param(&mut self, _param: &GenericParam)

Source

fn on_refine_param(&mut self, _param: &RefineParam)

Source

fn on_enum_variant(&mut self, _variant: &VariantDef)

Source

fn on_fn_sig(&mut self, _fn_sig: &FnSig)

Source

fn on_fn_output(&mut self, _output: &FnOutput)

Source

fn on_loc(&mut self, _loc: Ident, _node_id: NodeId)

Source

fn on_path(&mut self, _path: &ExprPath)

Source

fn on_base_sort(&mut self, _sort: &BaseSort)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§