[][src]Struct beacon::types::HistoricalBatch

pub struct HistoricalBatch<C: Config> {
    pub block_roots: VecArray<H256, C::SlotsPerHistoricalRoot>,
    pub state_roots: VecArray<H256, C::SlotsPerHistoricalRoot>,
}

Historical batch information.

Fields

block_roots: VecArray<H256, C::SlotsPerHistoricalRoot>

Block roots

state_roots: VecArray<H256, C::SlotsPerHistoricalRoot>

State roots

Trait Implementations

impl<C: Clone + Config> Clone for HistoricalBatch<C> where
    C::SlotsPerHistoricalRoot: Clone,
    C::SlotsPerHistoricalRoot: Clone
[src]

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

Performs copy-assignment from source. Read more

impl<C: Default + Config> Default for HistoricalBatch<C> where
    C::SlotsPerHistoricalRoot: Default,
    C::SlotsPerHistoricalRoot: Default
[src]

impl<C: PartialEq + Config> PartialEq<HistoricalBatch<C>> for HistoricalBatch<C> where
    C::SlotsPerHistoricalRoot: PartialEq,
    C::SlotsPerHistoricalRoot: PartialEq
[src]

impl<C: Eq + Config> Eq for HistoricalBatch<C> where
    C::SlotsPerHistoricalRoot: Eq,
    C::SlotsPerHistoricalRoot: Eq
[src]

impl<C: Debug + Config> Debug for HistoricalBatch<C> where
    C::SlotsPerHistoricalRoot: Debug,
    C::SlotsPerHistoricalRoot: Debug
[src]

impl<C: Config> Serialize for HistoricalBatch<C>[src]

impl<'de, C: Config> Deserialize<'de> for HistoricalBatch<C>[src]

impl<C: Config> Encode for HistoricalBatch<C> where
    VecArray<H256, C::SlotsPerHistoricalRoot>: Encode,
    VecArray<H256, C::SlotsPerHistoricalRoot>: Encode,
    VecArray<H256, C::SlotsPerHistoricalRoot>: Encode,
    VecArray<H256, C::SlotsPerHistoricalRoot>: Encode
[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<C: Config> Decode for HistoricalBatch<C> where
    VecArray<H256, C::SlotsPerHistoricalRoot>: Decode,
    VecArray<H256, C::SlotsPerHistoricalRoot>: Decode,
    VecArray<H256, C::SlotsPerHistoricalRoot>: Decode,
    VecArray<H256, C::SlotsPerHistoricalRoot>: Decode
[src]

impl<C: Config> Codec for HistoricalBatch<C> where
    VecArray<H256, C::SlotsPerHistoricalRoot>: Codec,
    VecArray<H256, C::SlotsPerHistoricalRoot>: Codec
[src]

type Size = Add<<VecArray<H256, C::SlotsPerHistoricalRoot> as Codec>::Size, <VecArray<H256, C::SlotsPerHistoricalRoot> as Codec>::Size>

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

impl<C: Config> Decode for HistoricalBatch<C> where
    VecArray<H256, C::SlotsPerHistoricalRoot>: Decode,
    VecArray<H256, C::SlotsPerHistoricalRoot>: Decode
[src]

impl<C: Config> Encode for HistoricalBatch<C> where
    VecArray<H256, C::SlotsPerHistoricalRoot>: Encode,
    VecArray<H256, C::SlotsPerHistoricalRoot>: Encode
[src]

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

Convert self to an owned vector.

impl<C: Config> IntoTree for HistoricalBatch<C> where
    VecArray<H256, C::SlotsPerHistoricalRoot>: IntoTree,
    VecArray<H256, C::SlotsPerHistoricalRoot>: IntoTree
[src]

impl<C: Config> FromTree for HistoricalBatch<C> where
    VecArray<H256, C::SlotsPerHistoricalRoot>: FromTree,
    VecArray<H256, C::SlotsPerHistoricalRoot>: FromTree
[src]

Auto Trait Implementations

impl<C> Sync for HistoricalBatch<C> where
    <C as Config>::SlotsPerHistoricalRoot: Sync

impl<C> Send for HistoricalBatch<C> where
    <C as Config>::SlotsPerHistoricalRoot: Send

impl<C> Unpin for HistoricalBatch<C> where
    <C as Config>::SlotsPerHistoricalRoot: Unpin

impl<C> RefUnwindSafe for HistoricalBatch<C> where
    <C as Config>::SlotsPerHistoricalRoot: RefUnwindSafe

impl<C> UnwindSafe for HistoricalBatch<C> where
    <C as Config>::SlotsPerHistoricalRoot: UnwindSafe

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