pub struct SignatureResult {
pub index: usize,
pub valid: bool,
pub signer_id: Option<String>,
pub timestamp: DateTime<Utc>,
pub error: Option<String>,
}Expand description
Result of verifying a single signature.
Fields§
§index: usizeThe index of this signature in the document.
valid: boolWhether the signature is valid.
signer_id: Option<String>The signer ID, if present.
timestamp: DateTime<Utc>The timestamp of the signature.
error: Option<String>Error message if verification failed.
Trait Implementations§
Source§impl Clone for SignatureResult
impl Clone for SignatureResult
Source§fn clone(&self) -> SignatureResult
fn clone(&self) -> SignatureResult
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 moreAuto Trait Implementations§
impl Freeze for SignatureResult
impl RefUnwindSafe for SignatureResult
impl Send for SignatureResult
impl Sync for SignatureResult
impl Unpin for SignatureResult
impl UnwindSafe for SignatureResult
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