Struct in3_sys::eth_tx_receipt[][src]

#[repr(C)]pub struct eth_tx_receipt {
    pub transaction_hash: bytes32_t,
    pub transaction_index: c_int,
    pub block_hash: bytes32_t,
    pub block_number: u64,
    pub cumulative_gas_used: u64,
    pub gas_used: u64,
    pub contract_address: *mut bytes_t,
    pub status: bool,
    pub logs: *mut eth_log_t,
}

Fields

transaction_hash: bytes32_ttransaction_index: c_intblock_hash: bytes32_tblock_number: u64cumulative_gas_used: u64gas_used: u64contract_address: *mut bytes_tstatus: boollogs: *mut eth_log_t

Trait Implementations

impl Clone for eth_tx_receipt[src]

impl Copy for eth_tx_receipt[src]

impl Debug for eth_tx_receipt[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> 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.