pub trait PartitionWrite<L: Level> {
// Required methods
fn insert(&mut self, value: L::Value) -> bool;
fn remove(&mut self, value: L::Value) -> bool;
}
pub trait PartitionWrite<L: Level> {
// Required methods
fn insert(&mut self, value: L::Value) -> bool;
fn remove(&mut self, value: L::Value) -> bool;
}