pub struct VisualReceiptEvidence {
pub id: String,
pub captured_unix_days: u64,
}Expand description
One dated Visual evidence receipt.
Fields§
§id: StringStable receipt identifier.
captured_unix_days: u64UTC day containing the evidence, expressed as Unix epoch days.
Trait Implementations§
Source§impl Clone for VisualReceiptEvidence
impl Clone for VisualReceiptEvidence
Source§fn clone(&self) -> VisualReceiptEvidence
fn clone(&self) -> VisualReceiptEvidence
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 VisualReceiptEvidence
impl Debug for VisualReceiptEvidence
Source§impl PartialEq for VisualReceiptEvidence
impl PartialEq for VisualReceiptEvidence
Source§fn eq(&self, other: &VisualReceiptEvidence) -> bool
fn eq(&self, other: &VisualReceiptEvidence) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for VisualReceiptEvidence
impl StructuralPartialEq for VisualReceiptEvidence
Auto Trait Implementations§
impl Freeze for VisualReceiptEvidence
impl RefUnwindSafe for VisualReceiptEvidence
impl Send for VisualReceiptEvidence
impl Sync for VisualReceiptEvidence
impl Unpin for VisualReceiptEvidence
impl UnsafeUnpin for VisualReceiptEvidence
impl UnwindSafe for VisualReceiptEvidence
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