[][src]Struct beacon::AttestationData

pub struct AttestationData {
    pub slot: u64,
    pub beacon_block_root: H256,
    pub source_epoch: u64,
    pub source_root: H256,
    pub target_root: H256,
    pub shard: u64,
    pub previous_crosslink: Crosslink,
    pub crosslink_data_root: H256,
}

Attestation data.

Fields

slot: u64

Slot number

beacon_block_root: H256

Root of the signed beacon block

source_epoch: u64

Last justified epoch in the beacon state

source_root: H256

Hash of the last justified beacon block

target_root: H256

Root of the ancestor at the epoch boundary

shard: u64

Shard number

previous_crosslink: Crosslink

Last crosslink

crosslink_data_root: H256

Data from the shard since the last attestation

Methods

impl AttestationData[src]

pub fn is_double_vote<C: Config>(
    &self,
    other: &AttestationData,
    config: &C
) -> bool
[src]

Whether it is double vote with another attestation.

pub fn is_surround_vote<C: Config>(
    &self,
    other: &AttestationData,
    config: &C
) -> bool
[src]

Whether it is surround vote with another attestation.

Trait Implementations

impl PartialEq<AttestationData> for AttestationData[src]

impl Clone for AttestationData[src]

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

Performs copy-assignment from source. Read more

impl Eq for AttestationData[src]

impl Debug for AttestationData[src]

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

impl Serialize for AttestationData[src]

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

impl Prefixable for AttestationData[src]

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

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

Attempt to deserialise the value from input.

impl Hashable for AttestationData[src]

impl Composite for AttestationData[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]