Enum common_types::receipt::TransactionOutcome[][src]

pub enum TransactionOutcome {
    Unknown,
    StateRoot(H256),
    StatusCode(u8),
}

Transaction outcome store in the receipt.

Variants

Status and state root are unknown under EIP-98 rules.

State root is known. Pre EIP-98 and EIP-658 rules.

Status code is known. EIP-658 rules.

Trait Implementations

impl Debug for TransactionOutcome
[src]

Formats the value using the given formatter. Read more

impl Clone for TransactionOutcome
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TransactionOutcome
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for TransactionOutcome
[src]

Auto Trait Implementations

impl Send for TransactionOutcome

impl Sync for TransactionOutcome