[][src]Struct evmc_sys::evmc_tx_context

#[repr(C)]
pub struct evmc_tx_context {
    pub tx_gas_price: evmc_uint256be,
    pub tx_origin: evmc_address,
    pub block_coinbase: evmc_address,
    pub block_number: i64,
    pub block_timestamp: i64,
    pub block_gas_limit: i64,
    pub block_difficulty: evmc_uint256be,
    pub chain_id: evmc_uint256be,
}

The transaction and block data for execution.

Fields

tx_gas_price: evmc_uint256be

< The transaction gas price.

tx_origin: evmc_address

< The transaction origin account.

block_coinbase: evmc_address

< The miner of the block.

block_number: i64

< The block number.

block_timestamp: i64

< The block timestamp.

block_gas_limit: i64

< The block gas limit.

block_difficulty: evmc_uint256be

< The block difficulty.

chain_id: evmc_uint256be

< The blockchain's ChainID.

Trait Implementations

impl Clone for evmc_tx_context[src]

impl Copy for evmc_tx_context[src]

impl Debug for evmc_tx_context[src]

impl Hash for evmc_tx_context[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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 = !

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]