Enum commitlog::ReadError [] [src]

pub enum ReadError {
    Io(Error),
    CorruptLog,
}

Error enum for commit log read operation.

Variants

Underlying IO error encountered by reading from the log

A segment in the log is corrupt, or the index itself is corrupt

Trait Implementations

impl Debug for ReadError
[src]

Formats the value using the given formatter.

impl From<Error> for ReadError
[src]

Performs the conversion.

impl From<MessageError> for ReadError
[src]

Performs the conversion.