pub struct RootDkgRound1Output {
pub frost_identifier: u16,
pub round1_secret_package: Vec<u8>,
pub round1_package: Vec<u8>,
}Expand description
Serialized output from one certifier’s DKG round one.
Fields§
§frost_identifier: u16Owner’s FROST identifier.
round1_secret_package: Vec<u8>Private round-one state retained by the certifier.
round1_package: Vec<u8>Public round-one package broadcast to every other certifier.
Trait Implementations§
Source§impl Clone for RootDkgRound1Output
impl Clone for RootDkgRound1Output
Source§fn clone(&self) -> RootDkgRound1Output
fn clone(&self) -> RootDkgRound1Output
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 RootDkgRound1Output
impl Debug for RootDkgRound1Output
Source§impl<'de> Deserialize<'de> for RootDkgRound1Output
impl<'de> Deserialize<'de> for RootDkgRound1Output
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 RootDkgRound1Output
Source§impl PartialEq for RootDkgRound1Output
impl PartialEq for RootDkgRound1Output
Source§fn eq(&self, other: &RootDkgRound1Output) -> bool
fn eq(&self, other: &RootDkgRound1Output) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RootDkgRound1Output
impl Serialize for RootDkgRound1Output
impl StructuralPartialEq for RootDkgRound1Output
Auto Trait Implementations§
impl Freeze for RootDkgRound1Output
impl RefUnwindSafe for RootDkgRound1Output
impl Send for RootDkgRound1Output
impl Sync for RootDkgRound1Output
impl Unpin for RootDkgRound1Output
impl UnsafeUnpin for RootDkgRound1Output
impl UnwindSafe for RootDkgRound1Output
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