pub struct KeyInitAck {
pub party_index: usize,
pub key_share_verifying_key: VerifyingKey,
}
Expand description
Message sent by key init participants to notify clients that are not participating that their key init phase is completed.
Fields§
§party_index: usize
Index of the party.
Verifying key from the generated threshold key share.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for KeyInitAck
impl<'de> Deserialize<'de> for KeyInitAck
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 KeyInitAck
impl RefUnwindSafe for KeyInitAck
impl Send for KeyInitAck
impl Sync for KeyInitAck
impl Unpin for KeyInitAck
impl UnwindSafe for KeyInitAck
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