Struct mashina::executed_block::ExecutedBlock[][src]

pub struct ExecutedBlock {
    pub header: Header,
    pub transactions: Vec<SignedTransaction>,
    pub uncles: Vec<Header>,
    pub receipts: Vec<Receipt>,
    pub transactions_set: HashSet<H256>,
    pub state: State<StateDB>,
    pub traces: Tracing,
    pub last_hashes: Arc<LastHashes>,
}

An internal type for a block’s common elements.

Fields

header: Header

Executed block header.

transactions: Vec<SignedTransaction>

Executed transactions.

uncles: Vec<Header>

Uncles.

receipts: Vec<Receipt>

Transaction receipts.

transactions_set: HashSet<H256>

Hashes of already executed transactions.

state: State<StateDB>

Underlying state.

traces: Tracing

Transaction traces.

last_hashes: Arc<LastHashes>

Hashes of last 256 blocks.

Implementations

impl ExecutedBlock[src]

pub fn new(
    state: State<StateDB>,
    last_hashes: Arc<LastHashes>,
    tracing: bool
) -> ExecutedBlock
[src]

Create a new block from the given state.

pub fn env_info(&self) -> EnvInfo[src]

Get the environment info concerning this block.

pub fn state_mut(&mut self) -> &mut State<StateDB>[src]

Get mutable access to a state.

pub fn traces_mut(&mut self) -> &mut Tracing[src]

Get mutable reference to traces.

Trait Implementations

impl Clone for ExecutedBlock[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> Pointable for T

type Init = T

The type for initializers.

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>,