pub struct PartialFrostSig {
pub signer_id: String,
pub party_idx: u32,
pub partial_sig_hex: String,
}Expand description
A partial FROST signature from one party.
Fields§
§signer_id: String§party_idx: u32§partial_sig_hex: StringTrait Implementations§
Source§impl Clone for PartialFrostSig
impl Clone for PartialFrostSig
Source§fn clone(&self) -> PartialFrostSig
fn clone(&self) -> PartialFrostSig
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 PartialFrostSig
impl Debug for PartialFrostSig
Source§impl<'de> Deserialize<'de> for PartialFrostSig
impl<'de> Deserialize<'de> for PartialFrostSig
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
Auto Trait Implementations§
impl Freeze for PartialFrostSig
impl RefUnwindSafe for PartialFrostSig
impl Send for PartialFrostSig
impl Sync for PartialFrostSig
impl Unpin for PartialFrostSig
impl UnsafeUnpin for PartialFrostSig
impl UnwindSafe for PartialFrostSig
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