Struct ethcore_rpc::v1::types::Receipt [] [src]

pub struct Receipt {
    pub transaction_hash: Option<H256>,
    pub transaction_index: Option<U256>,
    pub block_hash: Option<H256>,
    pub block_number: Option<U256>,
    pub cumulative_gas_used: U256,
    pub gas_used: Option<U256>,
    pub contract_address: Option<H160>,
    pub logs: Vec<Log>,
    pub state_root: Option<H256>,
    pub logs_bloom: H2048,
}

Receipt

Fields

Transaction Hash

Transaction index

Block hash

Block number

Cumulative gas used

Gas used

Contract address

Logs

State Root

Logs bloom

Trait Implementations

impl Debug for Receipt
[src]

Formats the value using the given formatter.

impl From<LocalizedReceipt> for Receipt
[src]

Performs the conversion.

impl From<RichReceipt> for Receipt
[src]

Performs the conversion.

impl From<EthReceipt> for Receipt
[src]

Performs the conversion.