Enum ophir::error::DeviceError [] [src]

pub enum DeviceError {
    Defined {
        description: String,
    },
    Derived {
        underlying: Box<Error>,
    },
}

Variants

Fields of Defined

Fields of Derived

Methods

impl DeviceError
[src]

Used to create a DeviceError from an existing Error.

Trait Implementations

impl Debug for DeviceError
[src]

Formats the value using the given formatter.

impl Display for DeviceError
[src]

Formats the value using the given formatter.

impl Error for DeviceError
[src]

A short description of the error. Read more

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