pub trait TmpWriter<T, D>: Iterator<Item = (T::Key, T::DecompressedValue)>{
    // Provided method
    fn batch_write_to_db(
        self,
        db: &LibmdbxReadWriter,
        batch_size: usize,
        pb: Option<&ProgressBar>,
    )
       where Self: Sized,
             InitTables: From<Vec<D>> { ... }
}

Provided Methods§

source

fn batch_write_to_db( self, db: &LibmdbxReadWriter, batch_size: usize, pb: Option<&ProgressBar>, )
where Self: Sized, InitTables: From<Vec<D>>,

Implementors§

source§

impl<I, T, D> TmpWriter<T, D> for I