Struct azure_devops_rust_api::work::models::DeliveryViewData   
source · pub struct DeliveryViewData {
    pub plan_view_data: PlanViewData,
    pub child_id_to_parent_id_map: Option<Value>,
    pub criteria_status: Option<TimelineCriteriaStatus>,
    pub end_date: Option<OffsetDateTime>,
    pub max_expanded_teams: Option<i32>,
    pub parent_item_maps: Vec<ParentChildWiMap>,
    pub start_date: Option<OffsetDateTime>,
    pub teams: Vec<TimelineTeamData>,
    pub work_item_dependencies: Vec<i32>,
    pub work_item_violations: Vec<i32>,
}Expand description
Data contract for Data of Delivery View
Fields§
§plan_view_data: PlanViewData§child_id_to_parent_id_map: Option<Value>Work item child id to parent id map
criteria_status: Option<TimelineCriteriaStatus>§end_date: Option<OffsetDateTime>The end date of the delivery view data
max_expanded_teams: Option<i32>Max number of teams that can be configured for a delivery plan
parent_item_maps: Vec<ParentChildWiMap>Mapping between parent id, title and all the child work item ids
start_date: Option<OffsetDateTime>The start date for the delivery view data
teams: Vec<TimelineTeamData>All the team data
work_item_dependencies: Vec<i32>List of all work item ids that have a dependency but not a violation
work_item_violations: Vec<i32>List of all work item ids that have a violation
Implementations§
Trait Implementations§
source§impl Clone for DeliveryViewData
 
impl Clone for DeliveryViewData
source§fn clone(&self) -> DeliveryViewData
 
fn clone(&self) -> DeliveryViewData
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 DeliveryViewData
 
impl Debug for DeliveryViewData
source§impl Default for DeliveryViewData
 
impl Default for DeliveryViewData
source§fn default() -> DeliveryViewData
 
fn default() -> DeliveryViewData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DeliveryViewData
 
impl<'de> Deserialize<'de> for DeliveryViewData
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 DeliveryViewData
 
impl PartialEq for DeliveryViewData
source§fn eq(&self, other: &DeliveryViewData) -> bool
 
fn eq(&self, other: &DeliveryViewData) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for DeliveryViewData
 
impl Serialize for DeliveryViewData
impl StructuralPartialEq for DeliveryViewData
Auto Trait Implementations§
impl RefUnwindSafe for DeliveryViewData
impl Send for DeliveryViewData
impl Sync for DeliveryViewData
impl Unpin for DeliveryViewData
impl UnwindSafe for DeliveryViewData
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