pub trait Writable: Transaction {
// Required method
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§
Object Safety§
This trait is not object safe.