Struct x_lint::runner::LintResults[][src]

#[non_exhaustive]pub struct LintResults<'l> {
    pub skipped: Vec<(LintSource<'l>, SkipReason<'l>)>,
    pub messages: Vec<(LintSource<'l>, LintMessage)>,
}

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
skipped: Vec<(LintSource<'l>, SkipReason<'l>)>messages: Vec<(LintSource<'l>, LintMessage)>

Trait Implementations

impl<'l> Debug for LintResults<'l>[src]

Auto Trait Implementations

impl<'l> RefUnwindSafe for LintResults<'l>

impl<'l> Send for LintResults<'l>

impl<'l> Sync for LintResults<'l>

impl<'l> Unpin for LintResults<'l>

impl<'l> UnwindSafe for LintResults<'l>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.