[][src]Struct beacon::types::Validator

pub struct Validator {
    pub pubkey: ValidatorId,
    pub withdrawal_credentials: H256,
    pub effective_balance: Uint,
    pub slashed: bool,
    pub activation_eligibility_epoch: Uint,
    pub activation_epoch: Uint,
    pub exit_epoch: Uint,
    pub withdrawable_epoch: Uint,
}

Validator record.

Fields

pubkey: ValidatorId

BLS public key

withdrawal_credentials: H256

Withdrawal credentials

effective_balance: Uint

Effective balance

slashed: bool

Was the validator slashed

activation_eligibility_epoch: Uint

Epoch when became eligible for activation

activation_epoch: Uint

Epoch when validator activated

exit_epoch: Uint

Epoch when validator exited

withdrawable_epoch: Uint

Epoch when validator is eligible to withdraw

Methods

impl Validator[src]

pub fn is_active(&self, epoch: Uint) -> bool[src]

Whether it is active validator.

pub fn is_slashable(&self, epoch: Uint) -> bool[src]

Whether it is slashable.

Trait Implementations

impl Clone for Validator[src]

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

Performs copy-assignment from source. Read more

impl Default for Validator[src]

impl PartialEq<Validator> for Validator[src]

impl Eq for Validator[src]

impl Debug for Validator[src]

impl Serialize for Validator[src]

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

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

impl Codec for Validator where
    ValidatorId: Codec,
    H256: Codec,
    Uint: Codec,
    bool: Codec,
    Uint: Codec,
    Uint: Codec,
    Uint: Codec,
    Uint: Codec
[src]

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

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

impl Decode for Validator where
    ValidatorId: Decode,
    H256: Decode,
    Uint: Decode,
    bool: Decode,
    Uint: Decode,
    Uint: Decode,
    Uint: Decode,
    Uint: Decode
[src]

impl Encode for Validator where
    ValidatorId: Encode,
    H256: Encode,
    Uint: Encode,
    bool: Encode,
    Uint: Encode,
    Uint: Encode,
    Uint: Encode,
    Uint: Encode
[src]

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

Convert self to an owned vector.

impl IntoTree for Validator where
    ValidatorId: IntoTree,
    H256: IntoTree,
    Uint: IntoTree,
    bool: IntoTree,
    Uint: IntoTree,
    Uint: IntoTree,
    Uint: IntoTree,
    Uint: IntoTree
[src]

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