Struct ckb_jsonrpc_types::BlockView[][src]

pub struct BlockView {
    pub header: HeaderView,
    pub uncles: Vec<UncleBlockView>,
    pub transactions: Vec<TransactionView>,
    pub proposals: Vec<ProposalShortId>,
}

The JSON view of a Block including header and body.

Fields

header: HeaderView

The block header.

uncles: Vec<UncleBlockView>

The uncles blocks in the block body.

transactions: Vec<TransactionView>

The transactions in the block body.

proposals: Vec<ProposalShortId>

The proposal IDs in the block body.

Trait Implementations

impl Clone for BlockView[src]

impl Debug for BlockView[src]

impl Default for BlockView[src]

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

impl Eq for BlockView[src]

impl From<BlockView> for BlockView[src]

impl Hash for BlockView[src]

impl PartialEq<BlockView> for BlockView[src]

impl Serialize for BlockView[src]

impl StructuralEq for BlockView[src]

impl StructuralPartialEq for BlockView[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> 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> 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>,