pub struct TimestampVerification {
pub valid: bool,
pub status: VerificationStatus,
pub message: String,
}Available on crate feature
timestamps-rfc3161 only.Expand description
Result of timestamp verification.
Fields§
§valid: boolWhether the token passed basic validation.
status: VerificationStatusVerification status.
message: StringHuman-readable message.
Trait Implementations§
Source§impl Clone for TimestampVerification
impl Clone for TimestampVerification
Source§fn clone(&self) -> TimestampVerification
fn clone(&self) -> TimestampVerification
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 TimestampVerification
impl RefUnwindSafe for TimestampVerification
impl Send for TimestampVerification
impl Sync for TimestampVerification
impl Unpin for TimestampVerification
impl UnsafeUnpin for TimestampVerification
impl UnwindSafe for TimestampVerification
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