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

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

Custom error handling for the library

Variants

Methods

impl GlusterError
[src]

[src]

Convert a GlusterError into a String representation.

Trait Implementations

impl Debug for GlusterError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for GlusterError
[src]

[src]

Formats the value using the given formatter. Read more

impl err for GlusterError
[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 GlusterError
[src]

[src]

Performs the conversion.

impl From<FromUtf8Error> for GlusterError
[src]

[src]

Performs the conversion.

impl From<IntoStringError> for GlusterError
[src]

[src]

Performs the conversion.

impl From<Error> for GlusterError
[src]

[src]

Performs the conversion.

impl From<ParseError> for GlusterError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for GlusterError

impl Sync for GlusterError