#[repr(C)]pub struct SignatureInfo {
pub signer_name: String,
pub signing_time: String,
pub reason: String,
pub location: String,
pub is_valid: bool,
pub covers_whole_document: bool,
}Expand description
Signature verification information
Fields§
§signer_name: StringSigner name
signing_time: StringSigning time
reason: StringReason for signing
location: StringLocation
is_valid: boolWhether signature is valid
covers_whole_document: boolWhether signature covers whole document
Trait Implementations§
Source§impl Clone for SignatureInfo
impl Clone for SignatureInfo
Source§impl Debug for SignatureInfo
impl Debug for SignatureInfo
Source§impl ExternType for SignatureInfo
impl ExternType 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