Struct azure_devops_rust_api::work::models::TimelineTeamData   
source · pub struct TimelineTeamData {Show 17 fields
    pub backlog: Option<BacklogLevel>,
    pub field_reference_names: Vec<String>,
    pub id: Option<String>,
    pub is_expanded: Option<bool>,
    pub iterations: Vec<TimelineTeamIteration>,
    pub name: Option<String>,
    pub order_by_field: Option<String>,
    pub partially_paged_field_reference_names: Vec<String>,
    pub partially_paged_work_items: Vec<Vec<Value>>,
    pub project_id: Option<String>,
    pub rollup_work_item_types: Vec<String>,
    pub status: Option<TimelineTeamStatus>,
    pub team_field_default_value: Option<String>,
    pub team_field_name: Option<String>,
    pub team_field_values: Vec<TeamFieldValue>,
    pub work_items: Vec<Vec<Value>>,
    pub work_item_type_colors: Vec<WorkItemColor>,
}Expand description
Fields§
§backlog: Option<BacklogLevel>Contract representing a backlog level
field_reference_names: Vec<String>The field reference names of the work item data
id: Option<String>The id of the team
is_expanded: Option<bool>Was iteration and work item data retrieved for this team. 
iterations: Vec<TimelineTeamIteration>The iteration data, including the work items, in the queried date range.
name: Option<String>The name of the team
order_by_field: Option<String>The order by field name of this team
partially_paged_field_reference_names: Vec<String>The field reference names of the partially paged work items, such as ID, WorkItemType
partially_paged_work_items: Vec<Vec<Value>>§project_id: Option<String>The project id the team belongs team
rollup_work_item_types: Vec<String>Work item types for which we will collect roll up data on the client side
status: Option<TimelineTeamStatus>§team_field_default_value: Option<String>The team field default value
team_field_name: Option<String>The team field name of this team
team_field_values: Vec<TeamFieldValue>The team field values
work_items: Vec<Vec<Value>>Work items associated with the team that are not under any of the team’s iterations
work_item_type_colors: Vec<WorkItemColor>Colors for the work item types.
Implementations§
Trait Implementations§
source§impl Clone for TimelineTeamData
 
impl Clone for TimelineTeamData
source§fn clone(&self) -> TimelineTeamData
 
fn clone(&self) -> TimelineTeamData
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TimelineTeamData
 
impl Debug for TimelineTeamData
source§impl Default for TimelineTeamData
 
impl Default for TimelineTeamData
source§fn default() -> TimelineTeamData
 
fn default() -> TimelineTeamData
source§impl<'de> Deserialize<'de> for TimelineTeamData
 
impl<'de> Deserialize<'de> for TimelineTeamData
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>,
source§impl PartialEq for TimelineTeamData
 
impl PartialEq for TimelineTeamData
source§fn eq(&self, other: &TimelineTeamData) -> bool
 
fn eq(&self, other: &TimelineTeamData) -> bool
self and other values to be equal, and is used
by ==.