pub trait MutableCollection: Collection {
// Required methods
fn set(&mut self, key: String, value: String);
fn delete(&mut self, key: &str);
fn increment(&mut self, key: &str, amount: i64);
fn decrement(&mut self, key: &str, amount: i64);
}Expand description
A mutable collection (TX, SESSION, etc.).