pub struct WorkItemClassificationNode {
pub work_item_tracking_resource: WorkItemTrackingResource,
pub attributes: Option<Value>,
pub children: Vec<WorkItemClassificationNode>,
pub has_children: Option<bool>,
pub id: Option<i32>,
pub identifier: Option<String>,
pub name: Option<String>,
pub path: Option<String>,
pub structure_type: Option<StructureType>,
}Expand description
Defines a classification node for work item tracking.
Fields§
§work_item_tracking_resource: WorkItemTrackingResource§attributes: Option<Value>Dictionary that has node attributes like start/finish date for iteration nodes.
children: Vec<WorkItemClassificationNode>List of child nodes fetched.
has_children: Option<bool>Flag that indicates if the classification node has any child nodes.
id: Option<i32>Integer ID of the classification node.
identifier: Option<String>GUID ID of the classification node.
name: Option<String>Name of the classification node.
path: Option<String>Path of the classification node.
structure_type: Option<StructureType>Node structure type.
Implementations§
source§impl WorkItemClassificationNode
impl WorkItemClassificationNode
pub fn new(work_item_tracking_resource: WorkItemTrackingResource) -> Self
Trait Implementations§
source§impl Clone for WorkItemClassificationNode
impl Clone for WorkItemClassificationNode
source§fn clone(&self) -> WorkItemClassificationNode
fn clone(&self) -> WorkItemClassificationNode
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 WorkItemClassificationNode
impl Debug for WorkItemClassificationNode
source§impl<'de> Deserialize<'de> for WorkItemClassificationNode
impl<'de> Deserialize<'de> for WorkItemClassificationNode
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 WorkItemClassificationNode
impl PartialEq for WorkItemClassificationNode
source§fn eq(&self, other: &WorkItemClassificationNode) -> bool
fn eq(&self, other: &WorkItemClassificationNode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for WorkItemClassificationNode
Auto Trait Implementations§
impl Freeze for WorkItemClassificationNode
impl RefUnwindSafe for WorkItemClassificationNode
impl Send for WorkItemClassificationNode
impl Sync for WorkItemClassificationNode
impl Unpin for WorkItemClassificationNode
impl UnwindSafe for WorkItemClassificationNode
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