Struct in3::eth1::types::TransactionReceipt[][src]

pub struct TransactionReceipt {
    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<Address>,
    pub logs: Vec<Log>,
    pub logs_bloom: Bloom,
    pub status: Option<bool>,
}

An Ethereum Transaction receipt.

Fields

transaction_hash: Option<H256>

Hash of the transaction

transaction_index: Option<U256>

Transaction’s index position in the block

block_hash: Option<H256>

Hash of the block where this transaction was in

block_number: Option<U256>

Block number where this transaction was in

cumulative_gas_used: U256

Total amount of gas used when this transaction was executed in the block

gas_used: Option<U256>

Amount of gas used by this specific transaction alone

contract_address: Option<Address>

Contract address created, if the transaction was a contract creation

logs: Vec<Log>

Vector of Log objects

logs_bloom: Bloom

Bloom filter for the logs of the block

status: Option<bool>

Indicates success or failure

Trait Implementations

impl Debug for TransactionReceipt[src]

impl<'de> Deserialize<'de> for TransactionReceipt[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,