pub struct SignatureInfo {
pub signer: String,
pub timestamp: u64,
pub content_hash: String,
pub value: String,
}Fields§
§signer: StringSigner identifier
timestamp: u64Timestamp of the signature
content_hash: StringHash of the content signed
value: StringThe signature itself
Trait Implementations§
Source§impl Clone for SignatureInfo
impl Clone for SignatureInfo
Source§fn clone(&self) -> SignatureInfo
fn clone(&self) -> SignatureInfo
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 SignatureInfo
impl Debug for SignatureInfo
Source§impl<'de> Deserialize<'de> for SignatureInfo
impl<'de> Deserialize<'de> for SignatureInfo
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 Hash for SignatureInfo
impl Hash for SignatureInfo
Source§impl PartialEq for SignatureInfo
impl PartialEq for SignatureInfo
Source§impl Serialize for SignatureInfo
impl Serialize for SignatureInfo
impl Eq for SignatureInfo
impl StructuralPartialEq for SignatureInfo
Auto Trait Implementations§
impl Freeze for SignatureInfo
impl RefUnwindSafe for SignatureInfo
impl Send for SignatureInfo
impl Sync for SignatureInfo
impl Unpin for SignatureInfo
impl UnwindSafe for SignatureInfo
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