WritebatchOrm

Trait WritebatchOrm 

Source
pub trait WritebatchOrm<'a>: KVOrm<'a> {
    // Provided method
    fn put_batch(&self, batch: &mut Writebatch<EncodedKey<Self>>) -> Result<()> { ... }
}
Expand description

Provided Methods§

Source

fn put_batch(&self, batch: &mut Writebatch<EncodedKey<Self>>) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'a, T: KVOrm<'a>> WritebatchOrm<'a> for T