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
use std::any::Any;
use std::error::Error;

pub type GenericError = Box<dyn Error + Send + Sync>;

pub type GenericType = Box<dyn Any + Send>;