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

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

Batch access to the database

Required methods

pub fn write(
    &self,
    options: &WriteOptions,
    batch: &WriteBatch
) -> Result<(), Error>
[src]

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

Loading content...

Implementors

impl Batch for Database[src]

Loading content...