[][src]Struct beacon::BeaconBlockBody

pub struct BeaconBlockBody {
    pub randao_reveal: H768,
    pub eth1_data: Eth1Data,
    pub proposer_slashings: Vec<ProposerSlashing>,
    pub attester_slashings: Vec<AttesterSlashing>,
    pub attestations: Vec<Attestation>,
    pub deposits: Vec<Deposit>,
    pub voluntary_exits: Vec<VoluntaryExit>,
    pub transfers: Vec<Transfer>,
}

Beacon block body.

Fields

randao_reveal: H768

Randao reveal.

eth1_data: Eth1Data

Eth1 data.

proposer_slashings: Vec<ProposerSlashing>

Proposer slashings.

attester_slashings: Vec<AttesterSlashing>

Attester slashings.

attestations: Vec<Attestation>

Attestations.

deposits: Vec<Deposit>

Deposits.

voluntary_exits: Vec<VoluntaryExit>

Voluntary exits.

transfers: Vec<Transfer>

Transfer.

Methods

impl BeaconBlockBody[src]

pub fn empty() -> Self[src]

Create an empty block body.

Trait Implementations

impl PartialEq<BeaconBlockBody> for BeaconBlockBody[src]

impl Clone for BeaconBlockBody[src]

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

Performs copy-assignment from source. Read more

impl Eq for BeaconBlockBody[src]

impl Debug for BeaconBlockBody[src]

impl Encode for BeaconBlockBody[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 BeaconBlockBody[src]

impl Serialize for BeaconBlockBody[src]

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

impl Prefixable for BeaconBlockBody[src]

impl Encode for BeaconBlockBody[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 Hashable for BeaconBlockBody[src]

impl Composite for BeaconBlockBody[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<T> DebugIfStd for T where
    T: Debug
[src]