[][src]Enum rustbreak::error::RustbreakError

#[non_exhaustive]pub enum RustbreakError {
    DeSerialization(DeSerError),
    Poison,
    Backend(BackendError),
    WritePanic,
}

The different kinds of errors that can be returned

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DeSerialization(DeSerError)

A context error when a DeSerialization failed

Poison

This error is returned if the Database is poisoned. See Database::write for details

Backend(BackendError)

An error in the backend happened

WritePanic

If Database::write_safe is used and the closure panics, this error is returned

Trait Implementations

impl Debug for RustbreakError[src]

impl Display for RustbreakError[src]

impl Error for RustbreakError[src]

impl From<BackendError> for RustbreakError[src]

impl From<DeSerError> for RustbreakError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,