[][src]Struct beacon::types::Deposit

pub struct Deposit {
    pub proof: VecArray<H256, Sum<DepositContractTreeDepth, U1>>,
    pub data: DepositData,
}

Block deposit.

Fields

proof: VecArray<H256, Sum<DepositContractTreeDepth, U1>>

Branch in the deposit tree

data: DepositData

Data

Trait Implementations

impl Clone for Deposit[src]

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

Performs copy-assignment from source. Read more

impl Default for Deposit[src]

impl PartialEq<Deposit> for Deposit[src]

impl Eq for Deposit[src]

impl Debug for Deposit[src]

impl Serialize for Deposit[src]

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

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

impl Codec for Deposit where
    VecArray<H256, Sum<DepositContractTreeDepth, U1>>: Codec,
    DepositData: Codec
[src]

type Size = Add<<VecArray<H256, Sum<DepositContractTreeDepth, U1>> as Codec>::Size, <DepositData as Codec>::Size>

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

impl Decode for Deposit where
    VecArray<H256, Sum<DepositContractTreeDepth, U1>>: Decode,
    DepositData: Decode
[src]

impl Encode for Deposit where
    VecArray<H256, Sum<DepositContractTreeDepth, U1>>: Encode,
    DepositData: Encode
[src]

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

Convert self to an owned vector.

impl IntoTree for Deposit where
    VecArray<H256, Sum<DepositContractTreeDepth, U1>>: IntoTree,
    DepositData: IntoTree
[src]

impl FromTree for Deposit where
    VecArray<H256, Sum<DepositContractTreeDepth, U1>>: FromTree,
    DepositData: FromTree
[src]

Auto Trait Implementations

impl Sync for Deposit

impl Send for Deposit

impl Unpin for Deposit

impl RefUnwindSafe for Deposit

impl UnwindSafe for Deposit

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