Struct ethane::types::TransactionReceipt[][src]

pub struct TransactionReceipt {
    pub transaction_hash: H256,
    pub transaction_index: U64,
    pub block_hash: H256,
    pub block_number: U64,
    pub from: H160,
    pub to: Option<H160>,
    pub cumulative_gas_used: U256,
    pub gas_used: U256,
    pub contract_address: Option<H160>,
    pub logs: Vec<Log>,
    pub logs_bloom: Bloom,
    pub status: U64,
}

Transaction receipt of a processed transaction

Fields

transaction_hash: H256transaction_index: U64block_hash: H256block_number: U64from: H160to: Option<H160>cumulative_gas_used: U256gas_used: U256contract_address: Option<H160>logs: Vec<Log>logs_bloom: Bloomstatus: U64

Trait Implementations

impl Clone for TransactionReceipt[src]

impl Debug for TransactionReceipt[src]

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

impl PartialEq<TransactionReceipt> for TransactionReceipt[src]

impl StructuralPartialEq 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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,