Struct common_types::receipt::RichReceipt[][src]

pub struct RichReceipt {
    pub transaction_hash: H256,
    pub transaction_index: usize,
    pub cumulative_gas_used: U256,
    pub gas_used: U256,
    pub contract_address: Option<Address>,
    pub logs: Vec<LogEntry>,
    pub log_bloom: Bloom,
    pub outcome: TransactionOutcome,
}

Receipt with additional info.

Fields

Transaction hash.

Transaction index.

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

The gas used in the execution of the transaction. Note the difference of meaning to Receipt::gas_used.

Contract address.

Logs

Logs bloom

Transaction outcome.

Trait Implementations

impl Debug for RichReceipt
[src]

Formats the value using the given formatter. Read more

impl Clone for RichReceipt
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RichReceipt
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for RichReceipt

impl Sync for RichReceipt