pub struct TaskAgentJobStep {
    pub condition: Option<String>,
    pub continue_on_error: Option<bool>,
    pub enabled: Option<bool>,
    pub env: Option<Value>,
    pub id: Option<String>,
    pub inputs: Option<Value>,
    pub name: Option<String>,
    pub retry_count_on_task_failure: Option<i32>,
    pub task: Option<TaskAgentJobTask>,
    pub timeout_in_minutes: Option<i32>,
    pub type_: Option<Type>,
}Expand description
Fields§
§condition: Option<String>§continue_on_error: Option<bool>§enabled: Option<bool>§env: Option<Value>§id: Option<String>§inputs: Option<Value>§name: Option<String>§retry_count_on_task_failure: Option<i32>§task: Option<TaskAgentJobTask>§timeout_in_minutes: Option<i32>§type_: Option<Type>Implementations§
Trait Implementations§
source§impl Clone for TaskAgentJobStep
 
impl Clone for TaskAgentJobStep
source§fn clone(&self) -> TaskAgentJobStep
 
fn clone(&self) -> TaskAgentJobStep
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for TaskAgentJobStep
 
impl Debug for TaskAgentJobStep
source§impl Default for TaskAgentJobStep
 
impl Default for TaskAgentJobStep
source§fn default() -> TaskAgentJobStep
 
fn default() -> TaskAgentJobStep
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TaskAgentJobStep
 
impl<'de> Deserialize<'de> for TaskAgentJobStep
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for TaskAgentJobStep
 
impl PartialEq for TaskAgentJobStep
source§fn eq(&self, other: &TaskAgentJobStep) -> bool
 
fn eq(&self, other: &TaskAgentJobStep) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for TaskAgentJobStep
 
impl Serialize for TaskAgentJobStep
impl StructuralPartialEq for TaskAgentJobStep
Auto Trait Implementations§
impl RefUnwindSafe for TaskAgentJobStep
impl Send for TaskAgentJobStep
impl Sync for TaskAgentJobStep
impl Unpin for TaskAgentJobStep
impl UnwindSafe for TaskAgentJobStep
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more