Trait exocore_chain::operation::Operation[][src]

pub trait Operation {
    fn get_operation_reader(&self) -> Result<Reader<'_>, Error>;

    fn as_entry_data(&self) -> Result<&[u8], Error> { ... }
fn get_type(&self) -> Result<OperationType, Error> { ... }
fn get_id(&self) -> Result<OperationId, Error> { ... }
fn get_group_id(&self) -> Result<OperationId, Error> { ... } }
Expand description

Wraps an operation that is stored either in the pending store, or in the the chain.

Required methods

Provided methods

Implementors