[][src]Struct web3::types::Transaction

pub struct Transaction {
    pub hash: H256,
    pub nonce: U256,
    pub block_hash: Option<H256>,
    pub block_number: Option<U64>,
    pub transaction_index: Option<Index>,
    pub from: H160,
    pub to: Option<H160>,
    pub value: U256,
    pub gas_price: U256,
    pub gas: U256,
    pub input: Bytes,
    pub raw: Option<Bytes>,
}

Description of a Transaction, pending or in the chain.

Fields

hash: H256

Hash

nonce: U256

Nonce

block_hash: Option<H256>

Block hash. None when pending.

block_number: Option<U64>

Block number. None when pending.

transaction_index: Option<Index>

Transaction Index. None when pending.

from: H160

Sender

to: Option<H160>

Recipient (None when contract creation)

value: U256

Transfered value

gas_price: U256

Gas Price

gas: U256

Gas amount

input: Bytes

Input data

raw: Option<Bytes>

Raw transaction data

Trait Implementations

impl Clone for Transaction[src]

impl Debug for Transaction[src]

impl Default for Transaction[src]

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

impl PartialEq<Transaction> for Transaction[src]

impl Serialize for Transaction[src]

impl StructuralPartialEq for Transaction[src]

Auto Trait Implementations

impl RefUnwindSafe for Transaction

impl Send for Transaction

impl Sync for Transaction

impl Unpin for Transaction

impl UnwindSafe for Transaction

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> Instrument for T[src]

impl<T> Instrument 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>,