Trait casper_execution_engine::storage::transaction_source::Writable[][src]

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