Enum color_eyre::ErrorKind[][src]

pub enum ErrorKind<'a> {
    NonRecoverable(&'a dyn Any),
    Recoverable(&'a (dyn Error + 'static)),
}
This is supported on crate feature issue-url only.

The kind of type erased error being reported

Variants

NonRecoverable(&'a dyn Any)

A non recoverable error aka panic!

Recoverable(&'a (dyn Error + 'static))

A recoverable error aka impl std::error::Error

Auto Trait Implementations

impl<'a> !RefUnwindSafe for ErrorKind<'a>

impl<'a> !Send for ErrorKind<'a>

impl<'a> !Sync for ErrorKind<'a>

impl<'a> Unpin for ErrorKind<'a>

impl<'a> !UnwindSafe for ErrorKind<'a>

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> Instrument for T[src]

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

impl<D> OwoColorize for D[src]

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.