Enum rustc_lint::context::TargetLint
source · enum TargetLint {
Id(LintId),
Renamed(String, LintId),
Removed(String),
Ignored,
}
Expand description
The target of the by_name
map, which accounts for renaming/deprecation.
Variants§
Id(LintId)
A direct lint target
Renamed(String, LintId)
Temporary renaming, used for easing migration pain; see #16545
Removed(String)
Lint with this name existed previously, but has been removed/deprecated. The string argument is the reason for removal.
Ignored
A lint name that should give no warnings and have no effect.
This is used by rustc to avoid warning about old rustdoc lints before rustdoc registers them as tool lints.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for TargetLint
impl Send for TargetLint
impl Sync for TargetLint
impl Unpin for TargetLint
impl UnwindSafe for TargetLint
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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: 40 bytes
Size for each variant:
Id
: 8 bytesRenamed
: 32 bytesRemoved
: 24 bytesIgnored
: 0 bytes