[][src]Struct isilon::models::ResultTopFiles

pub struct ResultTopFiles {
    pub atime_enabled: bool,
    pub change: Option<i32>,
    pub dir_atime_enabled: bool,
    pub files: Vec<ResultTopFilesFile>,
    pub top_n_max: i32,
    pub total_count: i32,
}

Fields

atime_enabled: bool

Access time enabled.

change: Option<i32>

Change in file ranking from result set comparison.

dir_atime_enabled: bool

Directory access time enabled.

files: Vec<ResultTopFilesFile>

Files listing.

top_n_max: i32

Limit on number of top results.

total_count: i32

Total count of file results.

Trait Implementations

impl Debug for ResultTopFiles[src]

impl Serialize for ResultTopFiles[src]

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