[][src]Struct beacon::BeaconBlockHeader

pub struct BeaconBlockHeader {
    pub slot: u64,
    pub previous_block_root: H256,
    pub state_root: H256,
    pub block_body_root: H256,
    pub signature: Signature,
}

Beacon block header.

Fields

slot: u64

Slot of the block.

previous_block_root: H256

Previous block root.

state_root: H256

State root.

block_body_root: H256

Block body root.

signature: Signature

Signature.

Methods

impl BeaconBlockHeader[src]

pub fn with_state_root_no_signature<H: Hasher<Out = H256>>(
    block: &BeaconBlock,
    state_root: H256
) -> Self
[src]

Create temporary block header with given state root and no signature.

Trait Implementations

impl PartialEq<BeaconBlockHeader> for BeaconBlockHeader[src]

impl Clone for BeaconBlockHeader[src]

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

Performs copy-assignment from source. Read more

impl Eq for BeaconBlockHeader[src]

impl Debug 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 Serialize for BeaconBlockHeader[src]

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

impl Prefixable 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]

fn decode<I>(value: &mut I) -> Option<Self> where
    I: Input
[src]

Attempt to deserialise the value from input.

impl Hashable for BeaconBlockHeader[src]

impl Composite for BeaconBlockHeader[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<S> Codec for S where
    S: Encode + Decode
[src]

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

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

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

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