pub enum ValidatorTransaction {
ObservedJwkUpdate(Box<ValidatorTransactionJwkUpdateTransaction>),
DkgResult(Box<ValidatorTransactionDkgResultTransaction>),
}Variants§
ObservedJwkUpdate(Box<ValidatorTransactionJwkUpdateTransaction>)
DkgResult(Box<ValidatorTransactionDkgResultTransaction>)
Trait Implementations§
Source§impl Clone for ValidatorTransaction
impl Clone for ValidatorTransaction
Source§fn clone(&self) -> ValidatorTransaction
fn clone(&self) -> ValidatorTransaction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ValidatorTransaction
impl Debug for ValidatorTransaction
Source§impl Default for ValidatorTransaction
impl Default for ValidatorTransaction
Source§impl<'de> Deserialize<'de> for ValidatorTransaction
impl<'de> Deserialize<'de> for ValidatorTransaction
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 ValidatorTransaction
impl PartialEq for ValidatorTransaction
Source§fn eq(&self, other: &ValidatorTransaction) -> bool
fn eq(&self, other: &ValidatorTransaction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ValidatorTransaction
impl Serialize for ValidatorTransaction
impl StructuralPartialEq for ValidatorTransaction
Auto Trait Implementations§
impl Freeze for ValidatorTransaction
impl RefUnwindSafe for ValidatorTransaction
impl Send for ValidatorTransaction
impl Sync for ValidatorTransaction
impl Unpin for ValidatorTransaction
impl UnsafeUnpin for ValidatorTransaction
impl UnwindSafe for ValidatorTransaction
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