pub struct EnvInfo {
    pub number: u64,
    pub author: H160,
    pub timestamp: u64,
    pub difficulty: U256,
    pub gas_limit: U256,
    pub last_hashes: Arc<Vec<H256, Global>>,
    pub gas_used: U256,
    pub base_fee: Option<U256>,
}
Expand description

Information concerning the execution environment for a message-call/contract-creation.

Fields

number: u64

The block number.

author: H160

The block author.

timestamp: u64

The block timestamp.

difficulty: U256

The block difficulty.

gas_limit: U256

The block gas limit.

last_hashes: Arc<Vec<H256, Global>>

The last 256 block hashes.

gas_used: U256

The gas used.

base_fee: Option<U256>

Block base fee.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.