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]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl ToString for WrappedError
[src]

[src]

Converts the error into a human-readable description ("pretty-print")

impl Send for WrappedError
[src]

Auto Trait Implementations

impl !Sync for WrappedError