[][src]Struct romad::jobs::Job

pub struct Job {
    pub ID: String,
    pub ParentID: String,
    pub Namespace: String,
    pub Datacenters: Vec<String>,
    pub MultiRegion: Option<String>,
    pub Type: String,
    pub Priority: isize,
    pub Periodic: bool,
    pub ParameterizedJob: bool,
    pub Stop: bool,
    pub Status: String,
    pub StatusDescription: String,
    pub JobSummary: JobSummary,
    pub CreateIndex: u16,
    pub ModifyIndex: u16,
    pub JobModifyIndex: u16,
    pub SubmitTime: u128,
}

Fields

ID: StringParentID: StringNamespace: StringDatacenters: Vec<String>MultiRegion: Option<String>Type: StringPriority: isizePeriodic: boolParameterizedJob: boolStop: boolStatus: StringStatusDescription: StringJobSummary: JobSummaryCreateIndex: u16ModifyIndex: u16JobModifyIndex: u16SubmitTime: u128

Trait Implementations

impl Debug for Job[src]

impl<'de> Deserialize<'de> for Job[src]

impl Serialize for Job[src]

Auto Trait Implementations

impl RefUnwindSafe for Job

impl Send for Job

impl Sync for Job

impl Unpin for Job

impl UnwindSafe for Job

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.