Struct azure_devops_rust_api::distributed_task::models::TaskGroup   
source · pub struct TaskGroup {
    pub task_definition: TaskDefinition,
    pub comment: Option<String>,
    pub created_by: Option<IdentityRef>,
    pub created_on: Option<OffsetDateTime>,
    pub deleted: Option<bool>,
    pub modified_by: Option<IdentityRef>,
    pub modified_on: Option<OffsetDateTime>,
    pub owner: Option<String>,
    pub parent_definition_id: Option<String>,
    pub revision: Option<i32>,
    pub tasks: Vec<TaskGroupStep>,
}Expand description
Fields§
§task_definition: TaskDefinition§comment: Option<String>Gets or sets comment.
created_by: Option<IdentityRef>§created_on: Option<OffsetDateTime>Gets or sets date on which it got created.
deleted: Option<bool>Gets or sets as ‘true’ to indicate as deleted, ‘false’ otherwise.
modified_by: Option<IdentityRef>§modified_on: Option<OffsetDateTime>Gets or sets date on which it got modified.
owner: Option<String>Gets or sets the owner.
parent_definition_id: Option<String>Gets or sets parent task group Id. This is used while creating a draft task group.
revision: Option<i32>Gets or sets revision.
tasks: Vec<TaskGroupStep>Gets or sets the tasks.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for TaskGroup
 
impl<'de> Deserialize<'de> for TaskGroup
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 TaskGroup
 
impl PartialEq for TaskGroup
impl StructuralPartialEq for TaskGroup
Auto Trait Implementations§
impl RefUnwindSafe for TaskGroup
impl Send for TaskGroup
impl Sync for TaskGroup
impl Unpin for TaskGroup
impl UnwindSafe for TaskGroup
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