Struct common_types::receipt::Receipt[][src]

pub struct Receipt {
    pub gas_used: U256,
    pub log_bloom: Bloom,
    pub logs: Vec<LogEntry>,
    pub outcome: TransactionOutcome,
}

Information describing execution of a transaction.

Fields

The total gas used in the block following execution of the transaction.

The OR-wide combination of all logs' blooms for this transaction.

The logs stemming from this transaction.

Transaction outcome.

Methods

impl Receipt
[src]

Create a new receipt.

Trait Implementations

impl Debug for Receipt
[src]

Formats the value using the given formatter. Read more

impl Clone for Receipt
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Receipt
[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 Receipt
[src]

impl Encodable for Receipt
[src]

Append a value to the stream

Get rlp-encoded bytes for this instance

impl Decodable for Receipt
[src]

Decode a value from RLP bytes

impl HeapSizeOf for Receipt
[src]

Measure the size of any heap-allocated structures that hang off this value, but not the space taken up by the value itself (i.e. what size_of:: measures, more or less); that space is handled by the implementation of HeapSizeOf for Box below. Read more

Auto Trait Implementations

impl Send for Receipt

impl Sync for Receipt