pub struct RoastSignerResponse {
session_id: u16,
signature_share: SignatureShare,
commitment: SigningCommitments,
}
Expand description
Represents a response from a RoastSigner containing a signature share and a new commitment.
Fields§
§session_id: u16
§commitment: SigningCommitments
Trait Implementations§
Source§impl Clone for RoastSignerResponse
impl Clone for RoastSignerResponse
Source§fn clone(&self) -> RoastSignerResponse
fn clone(&self) -> RoastSignerResponse
Returns a copy of the value. Read more
1.0.0 · 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 RoastSignerResponse
impl Debug for RoastSignerResponse
Source§impl<'de> Deserialize<'de> for RoastSignerResponse
impl<'de> Deserialize<'de> for RoastSignerResponse
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
Source§impl PartialEq for RoastSignerResponse
impl PartialEq for RoastSignerResponse
Source§impl Serialize for RoastSignerResponse
impl Serialize for RoastSignerResponse
impl Eq for RoastSignerResponse
impl StructuralPartialEq for RoastSignerResponse
Auto Trait Implementations§
impl Freeze for RoastSignerResponse
impl RefUnwindSafe for RoastSignerResponse
impl Send for RoastSignerResponse
impl Sync for RoastSignerResponse
impl Unpin for RoastSignerResponse
impl UnwindSafe for RoastSignerResponse
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