pub struct RootParticipantDkgOutput {
pub key_package: RootKeyPackage,
pub public_key_package: RootPublicKeyPackage,
}Expand description
Final DKG material derived by one certifier.
Fields§
§key_package: RootKeyPackageOwner’s FROST key package.
public_key_package: RootPublicKeyPackagePublic root key package derived by the participant.
Trait Implementations§
Source§impl Clone for RootParticipantDkgOutput
impl Clone for RootParticipantDkgOutput
Source§fn clone(&self) -> RootParticipantDkgOutput
fn clone(&self) -> RootParticipantDkgOutput
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 RootParticipantDkgOutput
impl Debug for RootParticipantDkgOutput
Source§impl<'de> Deserialize<'de> for RootParticipantDkgOutput
impl<'de> Deserialize<'de> for RootParticipantDkgOutput
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
impl Eq for RootParticipantDkgOutput
Source§impl PartialEq for RootParticipantDkgOutput
impl PartialEq for RootParticipantDkgOutput
Source§fn eq(&self, other: &RootParticipantDkgOutput) -> bool
fn eq(&self, other: &RootParticipantDkgOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RootParticipantDkgOutput
impl Serialize for RootParticipantDkgOutput
impl StructuralPartialEq for RootParticipantDkgOutput
Auto Trait Implementations§
impl Freeze for RootParticipantDkgOutput
impl RefUnwindSafe for RootParticipantDkgOutput
impl Send for RootParticipantDkgOutput
impl Sync for RootParticipantDkgOutput
impl Unpin for RootParticipantDkgOutput
impl UnsafeUnpin for RootParticipantDkgOutput
impl UnwindSafe for RootParticipantDkgOutput
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