Enum blkid::BlkidError [] [src]

pub enum BlkidError {
    FromUtf8Error(FromUtf8Error),
    NulError(NulError),
    Error(String),
    IoError(Error),
    IntoStringError(IntoStringError),
}

Custom error handling for the library

Variants

Methods

impl BlkidError
[src]

[src]

Convert a BlkidError into a String representation.

Trait Implementations

impl Debug for BlkidError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for BlkidError
[src]

[src]

Formats the value using the given formatter. Read more

impl err for BlkidError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<NulError> for BlkidError
[src]

[src]

Performs the conversion.

impl From<FromUtf8Error> for BlkidError
[src]

[src]

Performs the conversion.

impl From<IntoStringError> for BlkidError
[src]

[src]

Performs the conversion.

impl From<Error> for BlkidError
[src]

[src]

Performs the conversion.

impl From<BlkidError> for Error
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for BlkidError

impl Sync for BlkidError