[][src]Struct isilon::models::ReportsScansReport

pub struct ReportsScansReport {
    pub bytes_sent: Option<i32>,
    pub duration: Option<i32>,
    pub end: Option<i32>,
    pub files: Option<i32>,
    pub id: Option<String>,
    pub infections: Option<i32>,
    pub job_id: Option<i32>,
    pub policy_id: Option<String>,
    pub size: Option<i32>,
    pub start: Option<i32>,
    pub status: Option<String>,
}

Fields

bytes_sent: Option<i32>

The number of bytes sent to the virus definition server to be scanned.

duration: Option<i32>

The length of time the job ran for.

end: Option<i32>files: Option<i32>

The number of files scanned.

id: Option<String>

A unique identifier for the report.

infections: Option<i32>

The number of infections found.

job_id: Option<i32>policy_id: Option<String>

The id of the policy that this scan job executed.

size: Option<i32>

The cumulative size of the files scanned.

start: Option<i32>status: Option<String>

The state of the job.

Trait Implementations

impl Debug for ReportsScansReport[src]

impl Serialize for ReportsScansReport[src]

impl<'de> Deserialize<'de> for ReportsScansReport[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T