Enum perlin::storage::StorageError [] [src]

pub enum StorageError {
    KeyNotFound,
    ReadError(Option<Error>),
    WriteError(Option<Error>),
}

Errors that can occur during retrieval or storage of a value

Variants

The key which should be retrieved could not be found

Error occured during read operation

Error occured during write operation

Trait Implementations

impl Debug for StorageError
[src]

Formats the value using the given formatter.

impl Display for StorageError
[src]

Formats the value using the given formatter. Read more

impl Error for StorageError
[src]

A short description of the error. Read more

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