pub trait BatchOperations: KeyValueStore {
    fn batch_write(
        &self,
        entries: &mut dyn Iterator<Item = WriteOperation>
    ) -> Result<()> { ... } }

Provided Methods§

Implementors§