#[non_exhaustive]pub struct MalwareScanInfo {Show 13 fields
pub end_time: Option<i64>,
pub end_time_dt: Option<String>,
pub name: Option<String>,
pub num_files: Option<i64>,
pub num_infected: Option<i64>,
pub num_volumes: Option<i64>,
pub size: Option<i64>,
pub start_time: Option<i64>,
pub start_time_dt: Option<String>,
pub type: Option<String>,
pub type_id: Option<i64>,
pub uid: Option<String>,
pub unique_malware_count: Option<i64>,
}Expand description
Malware Scan Info
The malware scan information object describes characteristics, metadata of a malware scanning job.
[] Category: | Name: malware_scan_info
Constraints:
- at_least_one:
[name,uid]
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.end_time: Option<i64>End Time
The timestamp indicating when the scan job completed execution.
optional
end_time_dt: Option<String>End Time
The timestamp indicating when the scan job completed execution.
optional
name: Option<String>Name
The administrator-supplied or application-generated name of the scan. For example: “Home office weekly user database scan”, “Scan folders for viruses”, “Full system virus scan”
recommended
num_files: Option<i64>Scanned Files
The total number of files analyzed during the scan.
optional
num_infected: Option<i64>Number of Infected Entities
The total number of files identified as infected with malware during the scan.
optional
num_volumes: Option<i64>Number of Volumes
The total number of storage volumes examined during the malware scan.
optional
size: Option<i64>Size
The total size in bytes of all files that were scanned.
optional
start_time: Option<i64>Start Time
The timestamp indicating when the scan job began execution.
optional
start_time_dt: Option<String>Start Time
The timestamp indicating when the scan job began execution.
optional
type: Option<String>Type
The type of scan.
optional
type_id: Option<i64>Type ID
The type id of the scan.
required
uid: Option<String>Scan UID
The application-defined unique identifier assigned to an instance of a scan.
recommended
unique_malware_count: Option<i64>Unique Malware Count
The number of unique malware detected across all infected files.
optional
Trait Implementations§
Source§impl Clone for MalwareScanInfo
impl Clone for MalwareScanInfo
Source§fn clone(&self) -> MalwareScanInfo
fn clone(&self) -> MalwareScanInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more