[−][src]Trait rustc_ap_rustc_ast::visit::Visitor
Each method of the Visitor
trait is a hook to be potentially
overridden. Each method's default implementation recursively visits
the substructure of the input via the corresponding walk
method;
e.g., the visit_mod
method by default calls visit::walk_mod
.
If you want to ensure that your code handles every variant
explicitly, you need to override each method. (And you also need
to monitor future changes to Visitor
in case a new method with a
new default implementation gets introduced.)
Provided methods
pub fn visit_name(&mut self, _span: Span, _name: Symbol)
[src]
pub fn visit_ident(&mut self, ident: Ident)
[src]
pub fn visit_mod(
&mut self,
m: &'ast Mod,
_s: Span,
_attrs: &[Attribute],
_n: NodeId
)
[src]
&mut self,
m: &'ast Mod,
_s: Span,
_attrs: &[Attribute],
_n: NodeId
)
pub fn visit_foreign_item(&mut self, i: &'ast ForeignItem)
[src]
pub fn visit_global_asm(&mut self, ga: &'ast GlobalAsm)
[src]
pub fn visit_item(&mut self, i: &'ast Item)
[src]
pub fn visit_local(&mut self, l: &'ast Local)
[src]
pub fn visit_block(&mut self, b: &'ast Block)
[src]
pub fn visit_stmt(&mut self, s: &'ast Stmt)
[src]
pub fn visit_param(&mut self, param: &'ast Param)
[src]
pub fn visit_arm(&mut self, a: &'ast Arm)
[src]
pub fn visit_pat(&mut self, p: &'ast Pat)
[src]
pub fn visit_anon_const(&mut self, c: &'ast AnonConst)
[src]
pub fn visit_expr(&mut self, ex: &'ast Expr)
[src]
pub fn visit_expr_post(&mut self, _ex: &'ast Expr)
[src]
pub fn visit_ty(&mut self, t: &'ast Ty)
[src]
pub fn visit_generic_param(&mut self, param: &'ast GenericParam)
[src]
pub fn visit_generics(&mut self, g: &'ast Generics)
[src]
pub fn visit_where_predicate(&mut self, p: &'ast WherePredicate)
[src]
pub fn visit_fn(&mut self, fk: FnKind<'ast>, s: Span, _: NodeId)
[src]
pub fn visit_assoc_item(&mut self, i: &'ast AssocItem, ctxt: AssocCtxt)
[src]
pub fn visit_trait_ref(&mut self, t: &'ast TraitRef)
[src]
pub fn visit_param_bound(&mut self, bounds: &'ast GenericBound)
[src]
pub fn visit_poly_trait_ref(
&mut self,
t: &'ast PolyTraitRef,
m: &'ast TraitBoundModifier
)
[src]
&mut self,
t: &'ast PolyTraitRef,
m: &'ast TraitBoundModifier
)
pub fn visit_variant_data(&mut self, s: &'ast VariantData)
[src]
pub fn visit_struct_field(&mut self, s: &'ast StructField)
[src]
pub fn visit_enum_def(
&mut self,
enum_definition: &'ast EnumDef,
generics: &'ast Generics,
item_id: NodeId,
_: Span
)
[src]
&mut self,
enum_definition: &'ast EnumDef,
generics: &'ast Generics,
item_id: NodeId,
_: Span
)
pub fn visit_variant(&mut self, v: &'ast Variant)
[src]
pub fn visit_label(&mut self, label: &'ast Label)
[src]
pub fn visit_lifetime(&mut self, lifetime: &'ast Lifetime)
[src]
pub fn visit_mac_call(&mut self, mac: &'ast MacCall)
[src]
pub fn visit_mac_def(&mut self, _mac: &'ast MacroDef, _id: NodeId)
[src]
pub fn visit_path(&mut self, path: &'ast Path, _id: NodeId)
[src]
pub fn visit_use_tree(
&mut self,
use_tree: &'ast UseTree,
id: NodeId,
_nested: bool
)
[src]
&mut self,
use_tree: &'ast UseTree,
id: NodeId,
_nested: bool
)
pub fn visit_path_segment(
&mut self,
path_span: Span,
path_segment: &'ast PathSegment
)
[src]
&mut self,
path_span: Span,
path_segment: &'ast PathSegment
)
pub fn visit_generic_args(
&mut self,
path_span: Span,
generic_args: &'ast GenericArgs
)
[src]
&mut self,
path_span: Span,
generic_args: &'ast GenericArgs
)