Enum devicemapper::DmError [] [src]

pub enum DmError {
    Dm(ErrorEnumString),
    Io(Error),
    Nix(Error),
}

Define a common error enum. See http://blog.burntsushi.net/rust-error-handling/

Variants

DM errors

IO errors

*nix Errors

Trait Implementations

impl Debug for DmError
[src]

Formats the value using the given formatter.

impl From<Error> for DmError
[src]

Performs the conversion.

impl From<Error> for DmError
[src]

Performs the conversion.

impl Display for DmError
[src]

Formats the value using the given formatter. Read more

impl Error for DmError
[src]

A short description of the error. Read more

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