Enum gdbm::GdbmError[][src]

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

Custom error handling for the library

Variants

Methods

impl GdbmError
[src]

Convert a GdbmError into a String representation.

Trait Implementations

impl Debug for GdbmError
[src]

Formats the value using the given formatter. Read more

impl Display for GdbmError
[src]

Formats the value using the given formatter. Read more

impl err for GdbmError
[src]

This method is soft-deprecated. Read more

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

impl From<NulError> for GdbmError
[src]

Performs the conversion.

impl From<FromUtf8Error> for GdbmError
[src]

Performs the conversion.

impl From<Utf8Error> for GdbmError
[src]

Performs the conversion.

impl From<IntoStringError> for GdbmError
[src]

Performs the conversion.

impl From<Error> for GdbmError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for GdbmError

impl Sync for GdbmError