pub struct TimestampValidationReport {
pub timestamp_present: bool,
pub structure_valid: bool,
pub token_valid: bool,
pub message_imprint: Vec<u8>,
}Expand description
Result of validating a XAdES SignatureTimeStamp.
Fields§
§timestamp_present: bool§structure_valid: bool§token_valid: bool§message_imprint: Vec<u8>Trait Implementations§
Source§impl Clone for TimestampValidationReport
impl Clone for TimestampValidationReport
Source§fn clone(&self) -> TimestampValidationReport
fn clone(&self) -> TimestampValidationReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TimestampValidationReport
impl Debug for TimestampValidationReport
impl Eq for TimestampValidationReport
Source§impl PartialEq for TimestampValidationReport
impl PartialEq for TimestampValidationReport
Source§fn eq(&self, other: &TimestampValidationReport) -> bool
fn eq(&self, other: &TimestampValidationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimestampValidationReport
Auto Trait Implementations§
impl Freeze for TimestampValidationReport
impl RefUnwindSafe for TimestampValidationReport
impl Send for TimestampValidationReport
impl Sync for TimestampValidationReport
impl Unpin for TimestampValidationReport
impl UnsafeUnpin for TimestampValidationReport
impl UnwindSafe for TimestampValidationReport
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