pub trait InMemoryClient: Send + Sync {
// Required methods
fn get(&self, key: &str) -> Option<Value>;
fn set(&self, key: &str, value: Value) -> bool;
fn delete(&self, key: &str) -> bool;
}Expand description
In-process memory store. Internal mutability is the implementor’s responsibility.