[][src]Struct ckb_types::core::BlockExt

pub struct BlockExt {
    pub received_at: u64,
    pub total_difficulty: U256,
    pub total_uncles_count: u64,
    pub verified: Option<bool>,
    pub txs_fees: Vec<Capacity>,
}

TODO(doc): @quake

Fields

received_at: u64

TODO(doc): @quake

total_difficulty: U256

TODO(doc): @quake

total_uncles_count: u64

TODO(doc): @quake

verified: Option<bool>

TODO(doc): @quake

txs_fees: Vec<Capacity>

TODO(doc): @quake

Trait Implementations

impl Clone for BlockExt[src]

impl Debug for BlockExt[src]

impl Default for BlockExt[src]

impl Pack<BlockExt> for BlockExt[src]

impl PartialEq<BlockExt> for BlockExt[src]

impl StructuralPartialEq for BlockExt[src]

impl<'r> Unpack<BlockExt> for BlockExtReader<'r>[src]

impl Unpack<BlockExt> for BlockExt[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> 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>,