pub struct ScanMetadata {
pub scan_id: String,
pub scanner_version: String,
pub scan_started_at: String,
pub scan_completed_at: String,
pub duration_ms: u64,
pub scanned_files: u32,
pub scanned_bytes: u64,
}Expand description
Scan metadata
Fields§
§scan_id: String§scanner_version: String§scan_started_at: String§scan_completed_at: String§duration_ms: u64§scanned_files: u32§scanned_bytes: u64Trait Implementations§
Source§impl Clone for ScanMetadata
impl Clone for ScanMetadata
Source§fn clone(&self) -> ScanMetadata
fn clone(&self) -> ScanMetadata
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 ScanMetadata
impl Debug for ScanMetadata
Source§impl<'de> Deserialize<'de> for ScanMetadata
impl<'de> Deserialize<'de> for ScanMetadata
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 ScanMetadata
impl RefUnwindSafe for ScanMetadata
impl Send for ScanMetadata
impl Sync for ScanMetadata
impl Unpin for ScanMetadata
impl UnwindSafe for ScanMetadata
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