pub struct ParticipantSignature {
pub key: String,
pub sig: String,
pub signed_at: i64,
}Expand description
A signature on the receipt from a participant.
Fields§
§key: StringKey used to sign (e.g., “did:key:…#session-1”).
sig: StringBase64-encoded signature.
signed_at: i64When the signature was made (unix ms).
Trait Implementations§
Source§impl Clone for ParticipantSignature
impl Clone for ParticipantSignature
Source§fn clone(&self) -> ParticipantSignature
fn clone(&self) -> ParticipantSignature
Returns a duplicate 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 ParticipantSignature
impl Debug for ParticipantSignature
Source§impl<'de> Deserialize<'de> for ParticipantSignature
impl<'de> Deserialize<'de> for ParticipantSignature
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 ParticipantSignature
impl RefUnwindSafe for ParticipantSignature
impl Send for ParticipantSignature
impl Sync for ParticipantSignature
impl Unpin for ParticipantSignature
impl UnwindSafe for ParticipantSignature
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