[][src]Struct isilon::models::FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem

pub struct FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem {
    pub attribute_exists: Option<bool>,
    pub begins_with: Option<bool>,
    pub case_sensitive: Option<bool>,
    pub field: Option<String>,
    pub operator: Option<String>,
    pub _type: String,
    pub units: Option<String>,
    pub use_relative_time: Option<bool>,
    pub value: Option<String>,
}

Fields

attribute_exists: Option<bool>

Indicates whether the existence of an attribute indicates a match (valid only with 'type' = 'custom_attribute')

begins_with: Option<bool>

True to match files recursively under the given path. (valid only with 'type' = 'path')

case_sensitive: Option<bool>

True to indicate case sensitivity when comparing file attributes (valid only with 'type' = 'name' or 'type' = 'path')

field: Option<String>

File attribute field name to be compared in a custom comparison (valid only with 'type' = 'custom_attribute')

operator: Option<String>

The comparison operator to use while comparing an attribute with its value

_type: String

The file attribute to be compared to a given value

units: Option<String>

Size unit value. One of 'B','KB','MB','GB','TB','PB','EB' (valid only with 'type' = 'size')

use_relative_time: Option<bool>

Whether time units refer to a calendar date and time (e.g., Jun 3, 2009) or a relative duration (e.g., 2 weeks) (valid only with 'type' in {accessed_time, birth_time, changed_time or metadata_changed_time}

value: Option<String>

The value to be compared against a file attribute

Trait Implementations

impl Debug for FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem[src]

impl Serialize for FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem[src]

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