[][src]Struct isilon::models::JobTypeExtended

pub struct JobTypeExtended {
    pub enabled: bool,
    pub policy: String,
    pub priority: i32,
    pub schedule: Option<String>,
    pub allow_multiple_instances: bool,
    pub description: String,
    pub exclusion_set: String,
    pub hidden: bool,
    pub id: String,
}

Fields

enabled: bool

Whether the job type is enabled and able to run.

policy: String

Default impact policy of this job type.

priority: i32

Default priority of this job type; lower numbers preempt higher numbers.

schedule: Option<String>

The schedule on which this job type is queued, if any.

allow_multiple_instances: bool

Whether multiple instances of this job type may run simultaneously.

description: String

Brief description of the job type.

exclusion_set: String

The set(s) of mutually-exclusive job types to which this job belongs. No job in this set may run with any other job in this set. Obsolete; this value will always be an empty string, as exclusion sets are no longer a job type property.

hidden: bool

Whether this job type is normally visible in the UI.

id: String

Job type ID.

Trait Implementations

impl Debug for JobTypeExtended[src]

impl Serialize for JobTypeExtended[src]

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