pub struct DoTaskDefinition {
pub do_: Map<String, TaskDefinition>,
pub common: TaskDefinitionFields,
}Expand description
Represents the configuration of a task that is composed of multiple subtasks to run sequentially
Fields§
§do_: Map<String, TaskDefinition>Gets/sets a name/definition mapping of the subtasks to perform sequentially
common: TaskDefinitionFieldsGets/sets the task’s common fields
Implementations§
Source§impl DoTaskDefinition
impl DoTaskDefinition
Sourcepub fn new(do_: Map<String, TaskDefinition>) -> Self
pub fn new(do_: Map<String, TaskDefinition>) -> Self
Initializes a new DoTaskDefinition
Trait Implementations§
Source§impl Clone for DoTaskDefinition
impl Clone for DoTaskDefinition
Source§fn clone(&self) -> DoTaskDefinition
fn clone(&self) -> DoTaskDefinition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DoTaskDefinition
impl Debug for DoTaskDefinition
Source§impl Default for DoTaskDefinition
impl Default for DoTaskDefinition
Source§fn default() -> DoTaskDefinition
fn default() -> DoTaskDefinition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DoTaskDefinition
impl<'de> Deserialize<'de> for DoTaskDefinition
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 DoTaskDefinition
impl PartialEq for DoTaskDefinition
Source§fn eq(&self, other: &DoTaskDefinition) -> bool
fn eq(&self, other: &DoTaskDefinition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DoTaskDefinition
impl Serialize for DoTaskDefinition
impl StructuralPartialEq for DoTaskDefinition
Auto Trait Implementations§
impl Freeze for DoTaskDefinition
impl RefUnwindSafe for DoTaskDefinition
impl Send for DoTaskDefinition
impl Sync for DoTaskDefinition
impl Unpin for DoTaskDefinition
impl UnsafeUnpin for DoTaskDefinition
impl UnwindSafe for DoTaskDefinition
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