pub trait Batcher {
    fn new_batch<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<BoxedBatch>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
; }
Expand description

Required Methods§

Creates a write-only database that buffers changes to its host db until a final write is called.

Implementors§