[][src]Struct isilon::models::AntivirusPolicyCreateParams

pub struct AntivirusPolicyCreateParams {
    pub description: Option<String>,
    pub enabled: Option<bool>,
    pub force_run: Option<bool>,
    pub impact: Option<String>,
    pub name: String,
    pub paths: Option<Vec<String>>,
    pub recursion_depth: Option<i32>,
    pub schedule: Option<String>,
}

Fields

description: Option<String>

A description for the policy.

enabled: Option<bool>

Whether the policy is enabled.

force_run: Option<bool>

Forces the scan to run regardless of whether the files were recently scanned.

impact: Option<String>name: String

The name of the policy.

paths: Option<Vec<String>>

Paths to include in the scan.

recursion_depth: Option<i32>

The depth to recurse in directories. The default of -1 gives unlimited recursion.

schedule: Option<String>

Trait Implementations

impl Debug for AntivirusPolicyCreateParams[src]

impl Serialize for AntivirusPolicyCreateParams[src]

impl<'de> Deserialize<'de> for AntivirusPolicyCreateParams[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