remcached 0.3.0

Caching system designed for efficient storage and retrieval of entities from remote repositories (REST APIs, Database, ...etc)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use thiserror::Error;

#[derive(Error, Debug)]
pub enum ManualOperationError {
    #[error("Invalid cache. Cache: [{cache_id}]")]
    CacheNotFound {
        cache_id: &'static str,
    },
    #[error("Invalid input.")]
    InvalidInput,
    #[error("Send task error.")]
    SendError,
}