Struct rustc_resolve::access_levels::AccessLevelsVisitor
source · Fields
r: &'r mut Resolver<'a>
changed: bool
Implementations
sourceimpl<'r, 'a> AccessLevelsVisitor<'r, 'a>
impl<'r, 'a> AccessLevelsVisitor<'r, 'a>
sourcepub fn compute_access_levels<'c>(r: &'r mut Resolver<'a>, krate: &'c Crate)
pub fn compute_access_levels<'c>(r: &'r mut Resolver<'a>, krate: &'c Crate)
Fills the Resolver::access_levels
table with public & exported items
For now, this doesn’t resolve macros (FIXME) and cannot resolve Impl, as we
need access to a TyCtxt for that.
fn reset(&mut self)
sourcefn set_bindings_access_level(&mut self, module_id: LocalDefId)
fn set_bindings_access_level(&mut self, module_id: LocalDefId)
Update the access level of the bindings in the given module accordingly. The module access
level has to be Exported or Public.
This will also follow use
chains (see PrivacyVisitor::set_import_binding_access_level).
sourcefn set_access_level(
&mut self,
node_id: NodeId,
access_level: Option<AccessLevel>
) -> Option<AccessLevel>
fn set_access_level(
&mut self,
node_id: NodeId,
access_level: Option<AccessLevel>
) -> Option<AccessLevel>
Sets the access level of the LocalDefId
corresponding to the given NodeId
.
This function will panic if the NodeId
does not have a LocalDefId
fn set_access_level_def_id(
&mut self,
def_id: LocalDefId,
access_level: Option<AccessLevel>
) -> Option<AccessLevel>
Trait Implementations
sourceimpl<'r, 'ast> Visitor<'ast> for AccessLevelsVisitor<'ast, 'r>
impl<'r, 'ast> Visitor<'ast> for AccessLevelsVisitor<'ast, 'r>
fn visit_item(&mut self, item: &'ast Item)
fn visit_ident(&mut self, _ident: Ident)
fn visit_foreign_item(&mut self, i: &'ast Item<ForeignItemKind>)
fn visit_local(&mut self, l: &'ast Local)
fn visit_block(&mut self, b: &'ast Block)
fn visit_stmt(&mut self, s: &'ast Stmt)
fn visit_param(&mut self, param: &'ast Param)
fn visit_arm(&mut self, a: &'ast Arm)
fn visit_pat(&mut self, p: &'ast Pat)
fn visit_anon_const(&mut self, c: &'ast AnonConst)
fn visit_expr(&mut self, ex: &'ast Expr)
fn visit_expr_post(&mut self, _ex: &'ast Expr)
fn visit_ty(&mut self, t: &'ast Ty)
fn visit_generic_param(&mut self, param: &'ast GenericParam)
fn visit_generics(&mut self, g: &'ast Generics)
fn visit_closure_binder(&mut self, b: &'ast ClosureBinder)
fn visit_where_predicate(&mut self, p: &'ast WherePredicate)
fn visit_fn(&mut self, fk: FnKind<'ast>, Span, NodeId)
fn visit_assoc_item(&mut self, i: &'ast Item<AssocItemKind>, ctxt: AssocCtxt)
fn visit_trait_ref(&mut self, t: &'ast TraitRef)
fn visit_param_bound(&mut self, bounds: &'ast GenericBound, _ctxt: BoundKind)
fn visit_poly_trait_ref(&mut self, t: &'ast PolyTraitRef)
fn visit_variant_data(&mut self, s: &'ast VariantData)
fn visit_field_def(&mut self, s: &'ast FieldDef)
fn visit_enum_def(&mut self, enum_definition: &'ast EnumDef)
fn visit_variant(&mut self, v: &'ast Variant)
fn visit_label(&mut self, label: &'ast Label)
fn visit_lifetime(&mut self, lifetime: &'ast Lifetime, LifetimeCtxt)
fn visit_mac_call(&mut self, mac: &'ast MacCall)
fn visit_mac_def(&mut self, _mac: &'ast MacroDef, _id: NodeId)
fn visit_path(&mut self, path: &'ast Path, _id: NodeId)
fn visit_use_tree(&mut self, use_tree: &'ast UseTree, id: NodeId, _nested: bool)
fn visit_path_segment(&mut self, path_segment: &'ast PathSegment)
fn visit_generic_args(&mut self, generic_args: &'ast GenericArgs)
fn visit_generic_arg(&mut self, generic_arg: &'ast GenericArg)
fn visit_assoc_constraint(&mut self, constraint: &'ast AssocConstraint)
fn visit_attribute(&mut self, attr: &'ast Attribute)
fn visit_vis(&mut self, vis: &'ast Visibility)
fn visit_fn_ret_ty(&mut self, ret_ty: &'ast FnRetTy)
fn visit_fn_header(&mut self, _header: &'ast FnHeader)
fn visit_expr_field(&mut self, f: &'ast ExprField)
fn visit_pat_field(&mut self, fp: &'ast PatField)
fn visit_crate(&mut self, krate: &'ast Crate)
fn visit_inline_asm(&mut self, asm: &'ast InlineAsm)
fn visit_inline_asm_sym(&mut self, sym: &'ast InlineAsmSym)
Auto Trait Implementations
impl<'r, 'a> !RefUnwindSafe for AccessLevelsVisitor<'r, 'a>
impl<'r, 'a> !Send for AccessLevelsVisitor<'r, 'a>
impl<'r, 'a> !Sync for AccessLevelsVisitor<'r, 'a>
impl<'r, 'a> Unpin for AccessLevelsVisitor<'r, 'a>where
'a: 'r,
impl<'r, 'a> !UnwindSafe for AccessLevelsVisitor<'r, 'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 16 bytes