pub trait StorageMutateInfallible<Type: Mappable> {
// Required methods
fn insert(&mut self, key: &Type::Key, value: &Type::Value);
fn remove(&mut self, key: &Type::Key);
}
pub trait StorageMutateInfallible<Type: Mappable> {
// Required methods
fn insert(&mut self, key: &Type::Key, value: &Type::Value);
fn remove(&mut self, key: &Type::Key);
}