pub struct TaskAgentJob {
pub container: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub sidecar_containers: Option<Value>,
pub steps: Vec<TaskAgentJobStep>,
pub variables: Vec<TaskAgentJobVariable>,
}Expand description
Fields§
§container: Option<String>§id: Option<String>§name: Option<String>§sidecar_containers: Option<Value>§steps: Vec<TaskAgentJobStep>§variables: Vec<TaskAgentJobVariable>Implementations§
source§impl TaskAgentJob
impl TaskAgentJob
Trait Implementations§
source§impl Clone for TaskAgentJob
impl Clone for TaskAgentJob
source§fn clone(&self) -> TaskAgentJob
fn clone(&self) -> TaskAgentJob
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 TaskAgentJob
impl Debug for TaskAgentJob
source§impl Default for TaskAgentJob
impl Default for TaskAgentJob
source§fn default() -> TaskAgentJob
fn default() -> TaskAgentJob
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TaskAgentJob
impl<'de> Deserialize<'de> for TaskAgentJob
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<TaskAgentJob> for TaskAgentJob
impl PartialEq<TaskAgentJob> for TaskAgentJob
source§fn eq(&self, other: &TaskAgentJob) -> bool
fn eq(&self, other: &TaskAgentJob) -> bool
This method tests for
self and other values to be equal, and is used
by ==.