Enum sled::Error [] [src]

pub enum Error<Actual> {
    CasFailed(Actual),
    Unsupported(String),
    ReportableBug(String),
    Io(Error),
    Corruption {
        at: u64,
    },
}

An Error type encapsulating various issues that may come up in both the expected and unexpected operation of a PageCache.

Variants

An atomic operation has failed, and the current value is provided

The system has been used in an unsupported way.

An unexpected bug has happened. Please open an issue on github!

A read or write error has happened when interacting with the file system.

Corruption has been detected in the storage file.

Fields of Corruption

The file location that corrupted data was found at.

Methods

impl<T> Error<T>
[src]

[src]

Turns an Error<A> into an Error<B>.

Panics

Panics if the Error is of type Error::CasFailed

[src]

Turns an Error<A> into an Error<B>.

Trait Implementations

impl<T> Error for Error<T> where
    T: Debug
[src]

[src]

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

[src]

impl<A> PartialEq<Error<A>> for Error<A> where
    A: PartialEq<A>, 
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl<Actual> Debug for Error<Actual> where
    Actual: Debug
[src]

[src]

Formats the value using the given formatter.

impl<A> Display for Error<A> where
    A: Debug
[src]

[src]