Struct solana_storage_proto::convert::generated_evm::EvmBlockHeader[][src]

pub struct EvmBlockHeader {
    pub parent_hash: Vec<u8>,
    pub state_root: Vec<u8>,
    pub native_chain_hash: Vec<u8>,
    pub transactions: Vec<Vec<u8>>,
    pub transactions_root: Vec<u8>,
    pub receipts_root: Vec<u8>,
    pub logs_bloom: Vec<u8>,
    pub block_number: u64,
    pub gas_limit: u64,
    pub gas_used: u64,
    pub timestamp: u64,
    pub native_chain_slot: u64,
    pub version: u64,
}

Fields

parent_hash: Vec<u8>state_root: Vec<u8>native_chain_hash: Vec<u8>transactions: Vec<Vec<u8>>transactions_root: Vec<u8>receipts_root: Vec<u8>logs_bloom: Vec<u8>block_number: u64gas_limit: u64gas_used: u64timestamp: u64native_chain_slot: u64version: u64

Trait Implementations

impl Clone for EvmBlockHeader[src]

impl Debug for EvmBlockHeader[src]

impl Default for EvmBlockHeader[src]

impl From<BlockHeader> for EvmBlockHeader[src]

impl Message for EvmBlockHeader[src]

impl PartialEq<EvmBlockHeader> for EvmBlockHeader[src]

impl StructuralPartialEq for EvmBlockHeader[src]

impl TryFrom<EvmBlockHeader> for BlockHeader[src]

type Error = &'static str

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for EvmBlockHeader

impl Send for EvmBlockHeader

impl Sync for EvmBlockHeader

impl Unpin for EvmBlockHeader

impl UnwindSafe for EvmBlockHeader

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

impl<T> Instrument for T[src]

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

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

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

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<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]