pub enum LintErrorKind {
    #[non_exhaustive]    FromFile(FromFileError),
    #[non_exhaustive]    EnumeratePackageManifests(EnumeratePackageManifestsError),
    #[non_exhaustive]    UnknownDependency(String),
    #[non_exhaustive]    UnexpectedInternalDependencyVersion,
    #[non_exhaustive]    InvalidUtf8(PathBuf),
}Variants§
#[non_exhaustive]FromFile(FromFileError)
#[non_exhaustive]EnumeratePackageManifests(EnumeratePackageManifestsError)
#[non_exhaustive]UnknownDependency(String)
#[non_exhaustive]UnexpectedInternalDependencyVersion
#[non_exhaustive]InvalidUtf8(PathBuf)
Trait Implementations§
Source§impl Debug for LintErrorKind
 
impl Debug for LintErrorKind
Source§impl From<LintErrorKind> for LintError
 
impl From<LintErrorKind> for LintError
Source§fn from(kind: LintErrorKind) -> Self
 
fn from(kind: LintErrorKind) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LintErrorKind
impl !RefUnwindSafe for LintErrorKind
impl Send for LintErrorKind
impl Sync for LintErrorKind
impl Unpin for LintErrorKind
impl !UnwindSafe for LintErrorKind
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