Enum leveldb_rs::LevelDBError [] [src]

pub enum LevelDBError {
    LibraryError(String),
    OutOfMemoryError,
}

Our error type

Variants

An error from the LevelDB C library.

Out of memory.

Trait Implementations

impl Clone for LevelDBError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Hash for LevelDBError
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for LevelDBError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for LevelDBError
[src]

impl Debug for LevelDBError
[src]

Formats the value using the given formatter.

impl Display for LevelDBError
[src]

Formats the value using the given formatter. Read more