pub struct TimestampInfo {
pub signing_time: Option<String>,
pub is_verified: bool,
pub timestamp_authority: Option<String>,
}
Expand description
Timestamp information from the signature
Fields§
§signing_time: Option<String>
Signing time from SignerInfo
is_verified: bool
Whether the timestamp is verified
Timestamp authority info if available
Trait Implementations§
Source§impl Clone for TimestampInfo
impl Clone for TimestampInfo
Source§fn clone(&self) -> TimestampInfo
fn clone(&self) -> TimestampInfo
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 TimestampInfo
impl RefUnwindSafe for TimestampInfo
impl Send for TimestampInfo
impl Sync for TimestampInfo
impl Unpin for TimestampInfo
impl UnwindSafe for TimestampInfo
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