Enum rkv::error::StoreError[][src]

pub enum StoreError {
    IoError(Error),
    DirectoryDoesNotExistError(PathBuf),
    DataError(DataError),
    LmdbError(Error),
    ReadTransactionAlreadyExists(ThreadId),
    OpenAttemptedDuringTransaction(ThreadId),
}

Variants

Methods

impl StoreError
[src]

Trait Implementations

impl Debug for StoreError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for StoreError
[src]

Performs the conversion.

impl From<DataError> for StoreError
[src]

Performs the conversion.

impl From<Error> for StoreError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for StoreError

impl Sync for StoreError