pub trait TreeWriter<V> {
    // Required method
    fn write_node_batch(&self, node_batch: &NodeBatch<V>) -> Result<()>;
}

Required Methods§

source

fn write_node_batch(&self, node_batch: &NodeBatch<V>) -> Result<()>

Writes a node batch into storage.

Implementors§