Trait diem_parallel_executor::task::TransactionOutput[][src]

pub trait TransactionOutput: Send + Sync {
    type T: Transaction;
    fn get_writes(
        &self
    ) -> Vec<(<Self::T as Transaction>::Key, <Self::T as Transaction>::Value)>;
fn skip_output() -> Self; }
Expand description

Trait for execution result of a transaction.

Associated Types

Type of transaction and its associated key and value.

Required methods

Get the side effect of a transaction from its output.

Execution output for transactions that comes after SkipRest signal.

Implementors