pub struct ReportMeta {
pub generated_at: DateTime<Utc>,
pub elapsed_ms: u128,
pub scanned: usize,
pub skipped: usize,
pub scanner_ver: &'static str,
pub runtime_metrics: RuntimeMetrics,
}Expand description
Top-level metadata about the run.
Fields§
§generated_at: DateTime<Utc>§elapsed_ms: u128§scanned: usize§skipped: usize§scanner_ver: &'static str§runtime_metrics: RuntimeMetricsTrait Implementations§
Source§impl Debug for ReportMeta
impl Debug for ReportMeta
Auto Trait Implementations§
impl Freeze for ReportMeta
impl RefUnwindSafe for ReportMeta
impl Send for ReportMeta
impl Sync for ReportMeta
impl Unpin for ReportMeta
impl UnsafeUnpin for ReportMeta
impl UnwindSafe for ReportMeta
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