[][src]Struct beacon::types::BeaconBlockHeader

pub struct BeaconBlockHeader {
    pub slot: Uint,
    pub parent_root: H256,
    pub state_root: H256,
    pub body_root: H256,
    pub signature: Signature,
}

Beacon block header.

Fields

slot: Uint

Slot of the block.

parent_root: H256

Previous block root.

state_root: H256

State root.

body_root: H256

Block body root.

signature: Signature

Signature.

Trait Implementations

impl Clone for BeaconBlockHeader[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for BeaconBlockHeader[src]

impl From<BeaconBlockHeader> for SigningBeaconBlockHeader[src]

impl PartialEq<BeaconBlockHeader> for BeaconBlockHeader[src]

impl Eq for BeaconBlockHeader[src]

impl Debug for BeaconBlockHeader[src]

impl Serialize for BeaconBlockHeader[src]

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

impl Encode for BeaconBlockHeader[src]

fn encode(&self) -> Vec<u8>[src]

Convert self to an owned vector.

fn using_encoded<R, F>(&self, f: F) -> R where
    F: FnOnce(&[u8]) -> R, 
[src]

Convert self to a slice and then invoke the given closure with it.

impl Decode for BeaconBlockHeader[src]

impl Codec for BeaconBlockHeader where
    Uint: Codec,
    H256: Codec,
    H256: Codec,
    H256: Codec,
    Signature: Codec
[src]

type Size = Add<<Uint as Codec>::Size, Add<<H256 as Codec>::Size, Add<<H256 as Codec>::Size, Add<<H256 as Codec>::Size, <Signature as Codec>::Size>>>>

Size of the current type, also indicates whether it is fixed-sized or variable-sized. Read more

impl Decode for BeaconBlockHeader where
    Uint: Decode,
    H256: Decode,
    H256: Decode,
    H256: Decode,
    Signature: Decode
[src]

impl Encode for BeaconBlockHeader where
    Uint: Encode,
    H256: Encode,
    H256: Encode,
    H256: Encode,
    Signature: Encode
[src]

fn encode(&self) -> Vec<u8>[src]

Convert self to an owned vector.

impl IntoTree for BeaconBlockHeader where
    Uint: IntoTree,
    H256: IntoTree,
    H256: IntoTree,
    H256: IntoTree,
    Signature: IntoTree
[src]

impl FromTree for BeaconBlockHeader where
    Uint: FromTree,
    H256: FromTree,
    H256: FromTree,
    H256: FromTree,
    Signature: FromTree
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<S> Codec for S where
    S: Encode + Decode
[src]

impl<T> KeyedVec for T where
    T: Codec
[src]

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

type Output = T

Should always be Self