[][src]Struct beacon::types::Eth1Data

pub struct Eth1Data {
    pub deposit_root: H256,
    pub deposit_count: Uint,
    pub block_hash: H256,
}

Eth1 data.

Fields

deposit_root: H256

Root of the deposit tree

deposit_count: Uint

Total number of deposits

block_hash: H256

Block hash

Trait Implementations

impl Clone for Eth1Data[src]

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

Performs copy-assignment from source. Read more

impl Default for Eth1Data[src]

impl PartialEq<Eth1Data> for Eth1Data[src]

impl Eq for Eth1Data[src]

impl Debug for Eth1Data[src]

impl Serialize for Eth1Data[src]

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

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

impl Codec for Eth1Data where
    H256: Codec,
    Uint: Codec,
    H256: Codec
[src]

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

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

impl Decode for Eth1Data where
    H256: Decode,
    Uint: Decode,
    H256: Decode
[src]

impl Encode for Eth1Data where
    H256: Encode,
    Uint: Encode,
    H256: Encode
[src]

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

Convert self to an owned vector.

impl IntoTree for Eth1Data where
    H256: IntoTree,
    Uint: IntoTree,
    H256: IntoTree
[src]

impl FromTree for Eth1Data where
    H256: FromTree,
    Uint: FromTree,
    H256: 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