Struct etrace::WrappedError[][src]

pub struct WrappedError {
    pub kind_repr: String,
    pub description: String,
    pub file: &'static str,
    pub line: u32,
    pub sub_error: Option<Rc<WrappedError>>,
}

A generic-error that contains the serialized error-kind, description, the position (file, line) and an optional sub-error

Fields

Trait Implementations

impl Debug for WrappedError
[src]

Formats the value using the given formatter. Read more

impl Clone for WrappedError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Debug + Send> From<Error<T>> for WrappedError
[src]

Performs the conversion.

impl Display for WrappedError
[src]

Formats the value using the given formatter. Read more

impl Error for WrappedError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl Send for WrappedError
[src]

Auto Trait Implementations

impl !Sync for WrappedError