Enum mouscache::CacheError[][src]

pub enum CacheError {
    RedisCacheError(RedisError),
    InsertionError(String),
    DeletionError(String),
    AccessError(String),
    ConnectionError(String),
    Other(String),
}

Variants

Trait Implementations

impl Debug for CacheError
[src]

Formats the value using the given formatter. Read more

impl Display for CacheError
[src]

Formats the value using the given formatter. Read more

impl Error for CacheError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl From<RedisError> for CacheError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for CacheError

impl Sync for CacheError