[][src]Struct sdk_cds::models::RunJob

pub struct RunJob {
    pub project_id: i64,
    pub id: i64,
    pub workflow_node_run_id: i64,
    pub job: Job,
    pub parameters: Option<Vec<Parameter>>,
    pub status: String,
    pub retry: i64,
    pub queued: String,
    pub queued_seconds: i64,
    pub start: String,
    pub done: String,
    pub bookedby: Bookedby,
    pub exec_groups: Vec<Group>,
    pub header: Option<HashMap<String, String>>,
}

Fields

project_id: i64id: i64workflow_node_run_id: i64job: Jobparameters: Option<Vec<Parameter>>status: Stringretry: i64queued: Stringqueued_seconds: i64start: Stringdone: Stringbookedby: Bookedbyexec_groups: Vec<Group>header: Option<HashMap<String, String>>

Trait Implementations

impl Default for RunJob[src]

impl Debug for RunJob[src]

impl Serialize for RunJob[src]

impl<'de> Deserialize<'de> for RunJob where
    RunJob: Default
[src]

Auto Trait Implementations

impl Send for RunJob

impl Sync for RunJob

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 = Infallible

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

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