pub trait CommitInternal {
    // Required method
    fn commit_internal(&mut self, batch: &mut DBBatch) -> bool;
}

Required Methods§

source

fn commit_internal(&mut self, batch: &mut DBBatch) -> bool

| Virtual method called internally by | Commit that can be overridden to atomically | commit more index state. |

Implementors§