Enum rustc_lint::CheckLintNameResult
source · pub enum CheckLintNameResult<'a> {
Ok(&'a [LintId]),
NoLint(Option<Symbol>),
NoTool,
Renamed(String),
Removed(String),
Tool(Result<&'a [LintId], (Option<&'a [LintId]>, String)>),
}
Variants§
Ok(&'a [LintId])
NoLint(Option<Symbol>)
Lint doesn’t exist. Potentially contains a suggestion for a correct lint name.
NoTool
The lint refers to a tool that has not been registered.
Renamed(String)
The lint has been renamed to a new name.
Removed(String)
The lint has been removed due to the given reason.
Tool(Result<&'a [LintId], (Option<&'a [LintId]>, String)>)
The lint is from a tool. If the Option is None, then either
the lint does not exist in the tool or the code was not
compiled with the tool and therefore the lint was never
added to the LintStore
. Otherwise the LintId
will be
returned as if it where a rustc lint.
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for CheckLintNameResult<'a>
impl<'a> Send for CheckLintNameResult<'a>
impl<'a> Sync for CheckLintNameResult<'a>
impl<'a> Unpin for CheckLintNameResult<'a>
impl<'a> UnwindSafe for CheckLintNameResult<'a>
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
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: 48 bytes
Size for each variant:
Ok
: 20 bytesNoLint
: 4 bytesNoTool
: 0 bytesRenamed
: 28 bytesRemoved
: 28 bytesTool
: 44 bytes