[][src]Enum rscache::error::CacheError

pub enum CacheError {
    Io(Error),
    Read(ReadError),
    Compression(CompressionError),
    Parse(ParseError),
}

Super error type for all sub cache errors

Variants

Io(Error)

Wrapper for the std::io::Error type.

Read(ReadError)
Compression(CompressionError)
Parse(ParseError)

Clarification error for failed parsers.

Trait Implementations

impl Debug for CacheError[src]

impl Display for CacheError[src]

impl Error for CacheError[src]

impl From<CompressionError> for CacheError[src]

impl From<Err<()>> for CacheError[src]

impl From<Error> for CacheError[src]

impl From<ParseError> for CacheError[src]

impl From<ReadError> for CacheError[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.