pub trait MakeBatch {
    // Required method
    fn make_batch(&mut self, flush_on_close: bool) -> Box<DatabaseBatch>;
}

Required Methods§

source

fn make_batch(&mut self, flush_on_close: bool) -> Box<DatabaseBatch>

| Make a DatabaseBatch connected to this | database |

Implementors§