[][src]Struct beacon::types::CompactCommittee

pub struct CompactCommittee<C: Config> {
    pub pubkeys: MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>,
    pub compact_validators: MaxVec<Uint, C::MaxValidatorsPerCommittee>,
}

Compact committee

Fields

pubkeys: MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>

BLS pubkeys

compact_validators: MaxVec<Uint, C::MaxValidatorsPerCommittee>

Compact validators

Trait Implementations

impl<C: Clone + Config> Clone for CompactCommittee<C> where
    C::MaxValidatorsPerCommittee: Clone,
    C::MaxValidatorsPerCommittee: 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 CompactCommittee<C> where
    C::MaxValidatorsPerCommittee: Default,
    C::MaxValidatorsPerCommittee: Default
[src]

impl<C: PartialEq + Config> PartialEq<CompactCommittee<C>> for CompactCommittee<C> where
    C::MaxValidatorsPerCommittee: PartialEq,
    C::MaxValidatorsPerCommittee: PartialEq
[src]

impl<C: Eq + Config> Eq for CompactCommittee<C> where
    C::MaxValidatorsPerCommittee: Eq,
    C::MaxValidatorsPerCommittee: Eq
[src]

impl<C: Debug + Config> Debug for CompactCommittee<C> where
    C::MaxValidatorsPerCommittee: Debug,
    C::MaxValidatorsPerCommittee: Debug
[src]

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

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

impl<C: Config> Encode for CompactCommittee<C> where
    MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>: Encode,
    MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>: Encode,
    MaxVec<Uint, C::MaxValidatorsPerCommittee>: Encode,
    MaxVec<Uint, C::MaxValidatorsPerCommittee>: 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 CompactCommittee<C> where
    MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>: Decode,
    MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>: Decode,
    MaxVec<Uint, C::MaxValidatorsPerCommittee>: Decode,
    MaxVec<Uint, C::MaxValidatorsPerCommittee>: Decode
[src]

impl<C: Config> Codec for CompactCommittee<C> where
    MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>: Codec,
    MaxVec<Uint, C::MaxValidatorsPerCommittee>: Codec
[src]

type Size = Add<<MaxVec<ValidatorId, C::MaxValidatorsPerCommittee> as Codec>::Size, <MaxVec<Uint, C::MaxValidatorsPerCommittee> 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 CompactCommittee<C> where
    MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>: Decode,
    Compact<MaxVec<Uint, C::MaxValidatorsPerCommittee>>: Decode
[src]

impl<C: Config> Encode for CompactCommittee<C> where
    MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>: Encode,
    CompactRef<'a, MaxVec<Uint, C::MaxValidatorsPerCommittee>>: Encode
[src]

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

Convert self to an owned vector.

impl<C: Config> IntoTree for CompactCommittee<C> where
    MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>: IntoTree,
    CompactRef<'a, MaxVec<Uint, C::MaxValidatorsPerCommittee>>: IntoTree
[src]

impl<C: Config> FromTree for CompactCommittee<C> where
    MaxVec<ValidatorId, C::MaxValidatorsPerCommittee>: FromTree,
    Compact<MaxVec<Uint, C::MaxValidatorsPerCommittee>>: FromTree
[src]

Auto Trait Implementations

impl<C> Sync for CompactCommittee<C> where
    <C as Config>::MaxValidatorsPerCommittee: Sync

impl<C> Send for CompactCommittee<C> where
    <C as Config>::MaxValidatorsPerCommittee: Send

impl<C> Unpin for CompactCommittee<C> where
    <C as Config>::MaxValidatorsPerCommittee: Unpin

impl<C> RefUnwindSafe for CompactCommittee<C> where
    <C as Config>::MaxValidatorsPerCommittee: RefUnwindSafe

impl<C> UnwindSafe for CompactCommittee<C> where
    <C as Config>::MaxValidatorsPerCommittee: 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