[][src]Struct isilon::models::FsaSettingsSettings

pub struct FsaSettingsSettings {
    pub default_template: Option<String>,
    pub disk_usage_depth: Option<i32>,
    pub max_age: Option<i32>,
    pub max_count: Option<i32>,
    pub squash_depth: Option<i32>,
    pub top_n_max: Option<i32>,
    pub use_snapshot: Option<bool>,
}

Fields

default_template: Option<String>

Name of question template to use for new FSA jobs.

disk_usage_depth: Option<i32>

Maximum directory depth used for disk_usage question if not specified in the question.

max_age: Option<i32>

Maximum age of non-pinned results in seconds.

max_count: Option<i32>

Maximum number of non-pinned result sets to keep.

squash_depth: Option<i32>

Squash depth to use for squash binning questions if not specified in the question.

top_n_max: Option<i32>

Maximum number of items in a Top-N question result if not specified in the question.

use_snapshot: Option<bool>

If true, use a snapshot for consistency, otherwise analyze head.

Trait Implementations

impl Debug for FsaSettingsSettings[src]

impl Serialize for FsaSettingsSettings[src]

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