Struct error_chain::State [] [src]

pub struct State {
    pub next_error: Option<Box<Error + Send>>,
    pub backtrace: Option<Arc<Backtrace>>,
}

Common state between errors.

Fields

Next error in the error chain.

Backtrace for the current error.

Trait Implementations

impl Debug for State
[src]

Formats the value using the given formatter.

impl Default for State
[src]

Returns the "default value" for a type. Read more