[][src]Struct isilon::models::SyncJobPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem

pub struct SyncJobPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem {
    pub attribute_exists: Option<bool>,
    pub case_sensitive: Option<bool>,
    pub field: Option<String>,
    pub operator: Option<String>,
    pub _type: String,
    pub value: Option<String>,
    pub whole_word: Option<bool>,
}

Fields

attribute_exists: Option<bool>

For "custom_attribute" type criteria. The file will match as long as the attribute named by "field" exists. Default is true.

case_sensitive: Option<bool>

If true, the value comparison will be case sensitive. Default is true.

field: Option<String>

The name of the file attribute to match on (only required if this is a custom_attribute type criterion). Default is an empty string "".

operator: Option<String>

How to compare the specified attribute of each file to the specified value.

_type: String

The type of this criterion, that is, which file attribute to match on.

value: Option<String>

The value to compare the specified attribute of each file to.

whole_word: Option<bool>

If true, the attribute must match the entire word. Default is true.

Trait Implementations

impl Debug for SyncJobPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem[src]

impl Serialize for SyncJobPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem[src]

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