Enum x_lint::RunStatus[][src]

pub enum RunStatus<'l> {
    Executed,
    Skipped(SkipReason<'l>),
}

The run status of a lint.

Variants

Executed

This lint run was successful, with messages possibly written into the LintFormatter.

Skipped(SkipReason<'l>)

This lint was skipped.

Trait Implementations

impl<'l> Clone for RunStatus<'l>[src]

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

impl<'l> Eq for RunStatus<'l>[src]

impl<'l> PartialEq<RunStatus<'l>> for RunStatus<'l>[src]

impl<'l> StructuralEq for RunStatus<'l>[src]

impl<'l> StructuralPartialEq for RunStatus<'l>[src]

Auto Trait Implementations

impl<'l> RefUnwindSafe for RunStatus<'l>

impl<'l> Send for RunStatus<'l>

impl<'l> Sync for RunStatus<'l>

impl<'l> Unpin for RunStatus<'l>

impl<'l> UnwindSafe for RunStatus<'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<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> Pointable for T

type Init = T

The type for initializers.

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.