pub struct HistoricalScanRef<'a> {
pub scan_id: &'a str,
pub username: &'a str,
pub created_at_ms: u64,
pub outcomes: &'a [CheckOutcome],
}Expand description
Borrowed scan metadata needed to compare one scan against prior scans.
Fields§
§scan_id: &'a strStable scan identifier.
username: &'a strUsername this scan observed.
created_at_ms: u64Scan start timestamp in Unix epoch milliseconds.
outcomes: &'a [CheckOutcome]Per-site outcomes in this scan.
Trait Implementations§
Source§impl<'a> Clone for HistoricalScanRef<'a>
impl<'a> Clone for HistoricalScanRef<'a>
Source§fn clone(&self) -> HistoricalScanRef<'a>
fn clone(&self) -> HistoricalScanRef<'a>
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 moreimpl<'a> Copy for HistoricalScanRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for HistoricalScanRef<'a>
impl<'a> RefUnwindSafe for HistoricalScanRef<'a>
impl<'a> Send for HistoricalScanRef<'a>
impl<'a> Sync for HistoricalScanRef<'a>
impl<'a> Unpin for HistoricalScanRef<'a>
impl<'a> UnsafeUnpin for HistoricalScanRef<'a>
impl<'a> UnwindSafe for HistoricalScanRef<'a>
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