Struct ethane::types::Block[][src]

pub struct Block {
    pub number: Option<U64>,
    pub hash: Option<H256>,
    pub parent_hash: H256,
    pub nonce: Option<H64>,
    pub sha3_uncles: H256,
    pub logs_bloom: Option<Bloom>,
    pub transactions_root: H256,
    pub state_root: H256,
    pub receipts_root: H256,
    pub miner: H160,
    pub difficulty: U256,
    pub total_difficulty: U256,
    pub extra_data: Bytes,
    pub size: U256,
    pub gas_limit: U256,
    pub gas_used: U256,
    pub timestamp: U256,
    pub transactions: Vec<TransactionOrHash>,
    pub uncles: Vec<H256>,
}

Standard block type

Fields

number: Option<U64>hash: Option<H256>parent_hash: H256nonce: Option<H64>sha3_uncles: H256logs_bloom: Option<Bloom>transactions_root: H256state_root: H256receipts_root: H256miner: H160difficulty: U256total_difficulty: U256extra_data: Bytessize: U256gas_limit: U256gas_used: U256timestamp: U256transactions: Vec<TransactionOrHash>uncles: Vec<H256>

Trait Implementations

impl Clone for Block[src]

impl Debug for Block[src]

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

impl PartialEq<Block> for Block[src]

impl StructuralPartialEq for Block[src]

Auto Trait Implementations

impl RefUnwindSafe for Block

impl Send for Block

impl Sync for Block

impl Unpin for Block

impl UnwindSafe for Block

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