pub struct LintLevelsBuilder<'s, P> {
    sess: &'s Session,
    provider: P,
    warn_about_weird_lints: bool,
    store: &'s LintStore,
    registered_tools: &'s RegisteredTools,
}

Fields

sess: &'s Sessionprovider: Pwarn_about_weird_lints: boolstore: &'s LintStoreregistered_tools: &'s RegisteredTools

Implementations

Pushes a list of AST lint attributes onto this context.

This function will return a BuilderPush object which should be passed to pop when this scope for the attributes provided is exited.

This function will perform a number of tasks:

  • It’ll validate all lint-related attributes in attrs
  • It’ll mark all lint-related attributes as used
  • Lint levels will be updated based on the attributes provided
  • Lint attributes are validated, e.g., a #[forbid] can’t be switched to #[allow]

Don’t forget to call pop!

Called after push when the scope of a set of attributes are exited.

Attempts to insert the id to level_src map entry. If unsuccessful (e.g. if a forbid was already inserted on the same scope), then emits a diagnostic with no change to specs.

Checks if the lint is gated on a feature that is not enabled.

Returns true if the lint’s feature is enabled.

Find the lint level for a lint.

Used to emit a lint-related diagnostic based on the current state of this lint context.

Trait Implementations

Override this type to control which nested HIR are visited; see NestedFilter for details. If you override this type, you must also override nested_visit_map. Read more
If type NestedFilter is set to visit nested items, this method must also be overridden to provide a map to retrieve nested items. Read more
Visits the top-level item and (optionally) nested items / impl items. See visit_nested_item for details. Read more
Invoked when a nested item is encountered. By default, when Self::NestedFilter is nested_filter::None, this method does nothing. You probably don’t want to override this method – instead, override Self::NestedFilter or use the “shallow” or “deep” visit patterns described on itemlikevisit::ItemLikeVisitor. The only reason to override this method is if you want a nested pattern but cannot supply a Map; see nested_visit_map for advice. Read more
Like visit_nested_item(), but for trait items. See visit_nested_item() for advice on when to override this method. Read more
Like visit_nested_item(), but for impl items. See visit_nested_item() for advice on when to override this method. Read more
Like visit_nested_item(), but for foreign items. See visit_nested_item() for advice on when to override this method. Read more
Invoked to visit the body of a function, method or closure. Like visit_nested_item, does nothing by default unless you override Self::NestedFilter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.

Layout

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.