pub trait WritebatchOrm<'a>: KVOrm<'a> {
// Provided method
fn put_batch(&self, batch: &mut Writebatch<EncodedKey<Self>>) -> Result<()> { ... }
}Expand description
An orm version of leveldb::database::batch::Writebatch::put
Provided Methods§
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.