Struct rustc::lint::builtin::HardwiredLints [] [src]

pub struct HardwiredLints;
Unstable (rustc_private)

Does nothing as a lint pass, but registers some Lints which are used by other parts of the compiler.

Trait Implementations

impl LintPass for HardwiredLints
[src]

fn get_lints(&self) -> LintArray

Get descriptions of the lints this LintPass object can emit. Read more

impl LateLintPass for HardwiredLints
[src]

fn check_name(&mut self, _: &LateContext, _: Span, _: Name)

fn check_crate(&mut self, _: &LateContext, _: &Crate)

fn check_crate_post(&mut self, _: &LateContext, _: &Crate)

fn check_mod(&mut self, _: &LateContext, _: &Mod, _: Span, _: NodeId)

fn check_mod_post(&mut self, _: &LateContext, _: &Mod, _: Span, _: NodeId)

fn check_foreign_item(&mut self, _: &LateContext, _: &ForeignItem)

fn check_foreign_item_post(&mut self, _: &LateContext, _: &ForeignItem)

fn check_item(&mut self, _: &LateContext, _: &Item)

fn check_item_post(&mut self, _: &LateContext, _: &Item)

fn check_local(&mut self, _: &LateContext, _: &Local)

fn check_block(&mut self, _: &LateContext, _: &Block)

fn check_block_post(&mut self, _: &LateContext, _: &Block)

fn check_stmt(&mut self, _: &LateContext, _: &Stmt)

fn check_arm(&mut self, _: &LateContext, _: &Arm)

fn check_pat(&mut self, _: &LateContext, _: &Pat)

fn check_decl(&mut self, _: &LateContext, _: &Decl)

fn check_expr(&mut self, _: &LateContext, _: &Expr)

fn check_expr_post(&mut self, _: &LateContext, _: &Expr)

fn check_ty(&mut self, _: &LateContext, _: &Ty)

fn check_generics(&mut self, _: &LateContext, _: &Generics)

fn check_fn(&mut self, _: &LateContext, _: FnKind, _: &FnDecl, _: &Block, _: Span, _: NodeId)

fn check_fn_post(&mut self, _: &LateContext, _: FnKind, _: &FnDecl, _: &Block, _: Span, _: NodeId)

fn check_trait_item(&mut self, _: &LateContext, _: &TraitItem)

fn check_trait_item_post(&mut self, _: &LateContext, _: &TraitItem)

fn check_impl_item(&mut self, _: &LateContext, _: &ImplItem)

fn check_impl_item_post(&mut self, _: &LateContext, _: &ImplItem)

fn check_struct_def(&mut self, _: &LateContext, _: &VariantData, _: Name, _: &Generics, _: NodeId)

fn check_struct_def_post(&mut self, _: &LateContext, _: &VariantData, _: Name, _: &Generics, _: NodeId)

fn check_struct_field(&mut self, _: &LateContext, _: &StructField)

fn check_variant(&mut self, _: &LateContext, _: &Variant, _: &Generics)

fn check_variant_post(&mut self, _: &LateContext, _: &Variant, _: &Generics)

fn check_lifetime(&mut self, _: &LateContext, _: &Lifetime)

fn check_lifetime_def(&mut self, _: &LateContext, _: &LifetimeDef)

fn check_explicit_self(&mut self, _: &LateContext, _: &ExplicitSelf)

fn check_path(&mut self, _: &LateContext, _: &Path, _: NodeId)

fn check_path_list_item(&mut self, _: &LateContext, _: &PathListItem)

fn check_attribute(&mut self, _: &LateContext, _: &Attribute)

fn enter_lint_attrs(&mut self, _: &LateContext, _: &[Attribute])

Called when entering a syntax node that can have lint attributes such as #[allow(...)]. Called with all the attributes of that node. Read more

fn exit_lint_attrs(&mut self, _: &LateContext, _: &[Attribute])

Counterpart to enter_lint_attrs.

Derived Implementations

impl Clone for HardwiredLints
[src]

fn clone(&self) -> HardwiredLints

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for HardwiredLints
[src]