[][src]Struct ethereum_json_rpc::TransactionReceiptResult

pub struct TransactionReceiptResult {
    pub block_hash: String,
    pub block_number: String,
    pub contract_address: String,
    pub cumulative_gas_used: String,
    pub from: String,
    pub gas_used: String,
    pub logs: Vec<ObjectEeeStwYd>,
    pub logs_bloom: String,
    pub post_transaction_state: Option<String>,
    pub status: Option<bool>,
    pub to: String,
    pub transaction_hash: String,
    pub transaction_index: String,
}

Fields

block_hash: String

BlockHash of the block in which the transaction was mined

block_number: String

BlockNumber of the block in which the transaction was mined

contract_address: String

The contract address created, if the transaction was a contract creation, otherwise null

cumulative_gas_used: String

The gas units used by the transaction

from: String

The sender of the transaction

gas_used: String

The total gas used by the transaction

logs: Vec<ObjectEeeStwYd>

An array of all the logs triggered during the transaction

logs_bloom: String

A 2048 bit bloom filter from the logs of the transaction. Each log sets 3 bits though taking the low-order 11 bits of each of the first three pairs of bytes in a Keccak 256 hash of the log's byte series

post_transaction_state: Option<String>

The intermediate stateRoot directly after transaction execution.

status: Option<bool>

Whether or not the transaction threw an error.

to: String

Destination address of the transaction

transaction_hash: String

Keccak 256 of the transaction

transaction_index: String

An array of all the logs triggered during the transaction

Trait Implementations

impl Clone for TransactionReceiptResult[src]

impl PartialEq<TransactionReceiptResult> for TransactionReceiptResult[src]

impl Debug for TransactionReceiptResult[src]

impl Serialize for TransactionReceiptResult[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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