pub struct ReceiptPartySignature {
pub party_id: String,
pub signature: HybridSignature,
}Expand description
Hybrid signature by a party over the canonical receipt signable.
Fields§
§party_id: String§signature: HybridSignatureTrait Implementations§
Source§impl Clone for ReceiptPartySignature
impl Clone for ReceiptPartySignature
Source§fn clone(&self) -> ReceiptPartySignature
fn clone(&self) -> ReceiptPartySignature
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 ReceiptPartySignature
impl Debug for ReceiptPartySignature
Source§impl<'de> Deserialize<'de> for ReceiptPartySignature
impl<'de> Deserialize<'de> for ReceiptPartySignature
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 ReceiptPartySignature
impl RefUnwindSafe for ReceiptPartySignature
impl Send for ReceiptPartySignature
impl Sync for ReceiptPartySignature
impl Unpin for ReceiptPartySignature
impl UnsafeUnpin for ReceiptPartySignature
impl UnwindSafe for ReceiptPartySignature
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