pub struct TsaTokenInspection {
pub token_present: bool,
pub token_base64_valid: bool,
pub token_der_nonempty: bool,
pub extracted_timestamp: Option<String>,
}Expand description
Best-effort inspection result for a stored TSA token.
Fields§
§token_present: bool§token_base64_valid: bool§token_der_nonempty: bool§extracted_timestamp: Option<String>Trait Implementations§
Source§impl Clone for TsaTokenInspection
impl Clone for TsaTokenInspection
Source§fn clone(&self) -> TsaTokenInspection
fn clone(&self) -> TsaTokenInspection
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 moreSource§impl Debug for TsaTokenInspection
impl Debug for TsaTokenInspection
Source§impl<'de> Deserialize<'de> for TsaTokenInspection
impl<'de> Deserialize<'de> for TsaTokenInspection
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 TsaTokenInspection
impl RefUnwindSafe for TsaTokenInspection
impl Send for TsaTokenInspection
impl Sync for TsaTokenInspection
impl Unpin for TsaTokenInspection
impl UnsafeUnpin for TsaTokenInspection
impl UnwindSafe for TsaTokenInspection
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