pub struct RootSigningCommitment {
pub frost_identifier: u16,
pub commitments: Vec<u8>,
}Expand description
One signer’s round-one PUBLIC commitment. Relay-safe: carries no secret
material and is the only round-one artifact broadcast to the coordinator.
Kept deliberately separate from RootSigningNonces so the secret nonces
can never be co-serialized with, or mistaken for, relay-safe data.
Fields§
§frost_identifier: u16Owner’s FROST identifier.
commitments: Vec<u8>Serialized public signing commitments (broadcast to the coordinator).
Trait Implementations§
Source§impl Clone for RootSigningCommitment
impl Clone for RootSigningCommitment
Source§fn clone(&self) -> RootSigningCommitment
fn clone(&self) -> RootSigningCommitment
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 RootSigningCommitment
impl Debug for RootSigningCommitment
Source§impl<'de> Deserialize<'de> for RootSigningCommitment
impl<'de> Deserialize<'de> for RootSigningCommitment
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 RootSigningCommitment
Source§impl PartialEq for RootSigningCommitment
impl PartialEq for RootSigningCommitment
Source§fn eq(&self, other: &RootSigningCommitment) -> bool
fn eq(&self, other: &RootSigningCommitment) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RootSigningCommitment
impl Serialize for RootSigningCommitment
impl StructuralPartialEq for RootSigningCommitment
Auto Trait Implementations§
impl Freeze for RootSigningCommitment
impl RefUnwindSafe for RootSigningCommitment
impl Send for RootSigningCommitment
impl Sync for RootSigningCommitment
impl Unpin for RootSigningCommitment
impl UnsafeUnpin for RootSigningCommitment
impl UnwindSafe for RootSigningCommitment
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