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

pub trait Readable: Transaction {
    fn read(
        &self,
        handle: Self::Handle,
        key: &[u8]
    ) -> Result<Option<Bytes>, Self::Error>; }
Expand description

A transaction with the capability to read from a given Handle.

Required methods

Returns the value from the corresponding key from a given Transaction::Handle.

Implementations on Foreign Types

Implementors