pub struct VerificationInfo {
pub signed_by: String,
pub signature_algorithm: String,
pub signature_hex: String,
pub verified: bool,
}Expand description
Signature verification info.
Fields§
§signed_by: String§signature_algorithm: String§signature_hex: String§verified: boolTrait Implementations§
Source§impl Clone for VerificationInfo
impl Clone for VerificationInfo
Source§fn clone(&self) -> VerificationInfo
fn clone(&self) -> VerificationInfo
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 VerificationInfo
impl Debug for VerificationInfo
Source§impl<'de> Deserialize<'de> for VerificationInfo
impl<'de> Deserialize<'de> for VerificationInfo
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 VerificationInfo
impl RefUnwindSafe for VerificationInfo
impl Send for VerificationInfo
impl Sync for VerificationInfo
impl Unpin for VerificationInfo
impl UnsafeUnpin for VerificationInfo
impl UnwindSafe for VerificationInfo
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