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 for TaskAgentJob
impl PartialEq 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 ==.source§impl Serialize for TaskAgentJob
impl Serialize for TaskAgentJob
impl StructuralPartialEq for TaskAgentJob
Auto Trait Implementations§
impl Freeze for TaskAgentJob
impl RefUnwindSafe for TaskAgentJob
impl Send for TaskAgentJob
impl Sync for TaskAgentJob
impl Unpin for TaskAgentJob
impl UnwindSafe for TaskAgentJob
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