Enum ceph_rust::error::RadosError [] [src]

pub enum RadosError {
    FromUtf8Error(FromUtf8Error),
    NulError(NulError),
    Error(String),
    IoError(Error),
    IntoStringError(IntoStringError),
    ParseError(ParseError),
}
[]

Custom error handling for the library

Variants

Methods

impl RadosError
[src]

[]

Create a new RadosError with a String message

[]

Convert a RadosError into a String representation.

Trait Implementations

impl Debug for RadosError
[src]

[]

Formats the value using the given formatter.

impl Display for RadosError
[src]

[]

Formats the value using the given formatter. Read more

impl StdError for RadosError
[src]

[]

A short description of the error. Read more

[]

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

impl From<ParseError> for RadosError
[src]

[]

Performs the conversion.

impl From<NulError> for RadosError
[src]

[]

Performs the conversion.

impl From<FromUtf8Error> for RadosError
[src]

[]

Performs the conversion.

impl From<IntoStringError> for RadosError
[src]

[]

Performs the conversion.

impl From<Error> for RadosError
[src]

[]

Performs the conversion.