[][src]Struct isilon::models::SyncRuleSchedule

pub struct SyncRuleSchedule {
    pub begin: Option<String>,
    pub end: Option<String>,
    pub friday: Option<bool>,
    pub monday: Option<bool>,
    pub saturday: Option<bool>,
    pub sunday: Option<bool>,
    pub thursday: Option<bool>,
    pub tuesday: Option<bool>,
    pub wednesday: Option<bool>,
}

Fields

begin: Option<String>

Start time (inclusive) for this schedule, during its specified days. Format is "hh:mm" (24h format hour, and minute). A null value indicates the beginning of the day ("00:00").

end: Option<String>

End time (inclusive) for this schedule, during its specified days. Format is "hh:mm" (three-letter weekday name abbreviation, 24h format hour, and minute). A null value indicates the end of the day ("23:59").

friday: Option<bool>

If true, this rule is in effect on Friday. If false, or unspecified, it is not.

monday: Option<bool>

If true, this rule is in effect on Monday. If false, or unspecified, it is not.

saturday: Option<bool>

If true, this rule is in effect on Saturday. If false, or unspecified, it is not.

sunday: Option<bool>

If true, this rule is in effect on Sunday. If false, or unspecified, it is not.

thursday: Option<bool>

If true, this rule is in effect on Thursday. If false, or unspecified, it is not.

tuesday: Option<bool>

If true, this rule is in effect on Tuesday. If false, or unspecified, it is not.

wednesday: Option<bool>

If true, this rule is in effect on Wednesday. If false, or unspecified, it is not.

Trait Implementations

impl Debug for SyncRuleSchedule[src]

impl Serialize for SyncRuleSchedule[src]

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