logo
pub trait Writable: Transaction {
    fn write(
        &mut self,
        handle: Self::Handle,
        key: &[u8],
        value: &[u8]
    ) -> Result<(), Self::Error>; }
Expand description

A transaction with the capability to write to a given Handle.

Required Methods

Inserts a key-value pair into a given Transaction::Handle.

Implementations on Foreign Types

Implementors