Struct parenchyma::Error [] [src]

pub struct Error { /* fields omitted */ }

The core error type used in Parenchyma.

Methods

impl Error
[src]

Creates a new error from a known kind of error as well as an arbitrary error error.

Returns a reference to the inner error wrapped by this error (if any).

Returns the corresponding ErrorKind for this error.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<ErrorKind> for Error
[src]

Creates a new error from a known kind of error

impl Display for Error
[src]

Formats the value using the given formatter.

impl Error for Error
[src]

A short description of the error. Read more

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

impl From<Error> for Error
[src]

Performs the conversion.