pub struct RootSigningPackage {
pub signing_package: Vec<u8>,
pub signer_ids: Vec<u16>,
}Expand description
Public signing package built by the coordinator from >= threshold
commitments. Distributed to the participating signers for round two.
Fields§
§signing_package: Vec<u8>Serialized FROST signing package (binds the commitments and message).
signer_ids: Vec<u16>Identifiers whose commitments are bound into this package.
Trait Implementations§
Source§impl Clone for RootSigningPackage
impl Clone for RootSigningPackage
Source§fn clone(&self) -> RootSigningPackage
fn clone(&self) -> RootSigningPackage
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 RootSigningPackage
impl Debug for RootSigningPackage
Source§impl<'de> Deserialize<'de> for RootSigningPackage
impl<'de> Deserialize<'de> for RootSigningPackage
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 RootSigningPackage
Source§impl PartialEq for RootSigningPackage
impl PartialEq for RootSigningPackage
Source§fn eq(&self, other: &RootSigningPackage) -> bool
fn eq(&self, other: &RootSigningPackage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RootSigningPackage
impl Serialize for RootSigningPackage
impl StructuralPartialEq for RootSigningPackage
Auto Trait Implementations§
impl Freeze for RootSigningPackage
impl RefUnwindSafe for RootSigningPackage
impl Send for RootSigningPackage
impl Sync for RootSigningPackage
impl Unpin for RootSigningPackage
impl UnsafeUnpin for RootSigningPackage
impl UnwindSafe for RootSigningPackage
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