Struct common_types::receipt::LocalizedReceipt[][src]

pub struct LocalizedReceipt {
    pub transaction_hash: H256,
    pub transaction_index: usize,
    pub block_hash: H256,
    pub block_number: BlockNumber,
    pub cumulative_gas_used: U256,
    pub gas_used: U256,
    pub contract_address: Option<Address>,
    pub logs: Vec<LocalizedLogEntry>,
    pub log_bloom: Bloom,
    pub outcome: TransactionOutcome,
    pub to: Option<H160>,
    pub from: H160,
}

Receipt with additional info.

Fields

Transaction hash.

Transaction index.

Block hash.

Block number.

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.

Receiver address

Sender

Trait Implementations

impl Debug for LocalizedReceipt
[src]

Formats the value using the given formatter. Read more

impl Clone for LocalizedReceipt
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LocalizedReceipt
[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 LocalizedReceipt

impl Sync for LocalizedReceipt