Enum xfs::XfsError [] [src]

pub enum XfsError {
    Io(Error),
    Incomplete,
    Parse,
}

Variants

We encounter an error reading from /proc/fs/xfs/stat

We don't have enough information for a complete parse

We encounter an error with the data wer're parsing

Trait Implementations

impl Debug for XfsError
[src]

Formats the value using the given formatter.

impl Display for XfsError
[src]

Formats the value using the given formatter. Read more

impl Error for XfsError
[src]

A short description of the error. Read more

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

impl From<Error> for XfsError
[src]

Performs the conversion.