Trait exonum_leveldb::database::batch::Batch [] [src]

pub trait Batch {
    fn write(
        &self,
        options: WriteOptions,
        batch: &Writebatch
    ) -> Result<(), Error>; }

Batch access to the database

Required Methods

Write a batch to the database, ensuring success for all items or an error

Implementors