pub struct KeyRegistration {
pub vote_pk: VotePK,
pub selection_pk: VRFPK,
pub vote_first: Round,
pub vote_last: Round,
pub vote_key_dilution: u64,
}
Expand description
Fields for a key registration transaction
Fields§
§vote_pk: VotePK
§selection_pk: VRFPK
§vote_first: Round
§vote_last: Round
§vote_key_dilution: u64
Trait Implementations§
Source§impl Clone for KeyRegistration
impl Clone for KeyRegistration
Source§fn clone(&self) -> KeyRegistration
fn clone(&self) -> KeyRegistration
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for KeyRegistration
impl Debug for KeyRegistration
Source§impl<'de> Deserialize<'de> for KeyRegistration
impl<'de> Deserialize<'de> for KeyRegistration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for KeyRegistration
impl PartialEq for KeyRegistration
impl Eq for KeyRegistration
impl StructuralPartialEq for KeyRegistration
Auto Trait Implementations§
impl Freeze for KeyRegistration
impl RefUnwindSafe for KeyRegistration
impl Send for KeyRegistration
impl Sync for KeyRegistration
impl Unpin for KeyRegistration
impl UnwindSafe for KeyRegistration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more