pub enum LintIssueKind {
RenamedRule {
canonical: &'static str,
},
RetiredCode,
UnknownName {
suggestion: Option<Arc<str>>,
},
}Variants§
Trait Implementations§
Source§impl Clone for LintIssueKind
impl Clone for LintIssueKind
Source§fn clone(&self) -> LintIssueKind
fn clone(&self) -> LintIssueKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LintIssueKind
impl Debug for LintIssueKind
impl Eq for LintIssueKind
Source§impl PartialEq for LintIssueKind
impl PartialEq for LintIssueKind
impl StructuralPartialEq for LintIssueKind
Auto Trait Implementations§
impl Freeze for LintIssueKind
impl RefUnwindSafe for LintIssueKind
impl Send for LintIssueKind
impl Sync for LintIssueKind
impl Unpin for LintIssueKind
impl UnsafeUnpin for LintIssueKind
impl UnwindSafe for LintIssueKind
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