Struct ethcore::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: H2048,
    pub state_root: Option<H256>,
}

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

State root

Trait Implementations

impl Debug for RichReceipt
[src]

Formats the value using the given formatter.

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 !=.