Enum gfapi_sys::gluster::GlusterError [] [src]

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

Custom error handling for the library

Variants

Methods

impl GlusterError
[src]

Convert a GlusterError into a String representation.

Trait Implementations

impl Debug for GlusterError
[src]

Formats the value using the given formatter.

impl Display for GlusterError
[src]

Formats the value using the given formatter. Read more

impl err for GlusterError
[src]

A short description of the error. Read more

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

impl From<NulError> for GlusterError
[src]

Performs the conversion.

impl From<FromUtf8Error> for GlusterError
[src]

Performs the conversion.

impl From<IntoStringError> for GlusterError
[src]

Performs the conversion.

impl From<Error> for GlusterError
[src]

Performs the conversion.