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. Teams with IsExpanded false have not had their iteration, work item, and field related data queried and will never contain this data. If true then these items are queried and, if there are items in the queried range, there will be data.

§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§

source§

impl TimelineTeamData

source

pub fn new() -> Self

Trait Implementations§

source§

impl Clone for TimelineTeamData

source§

fn clone(&self) -> TimelineTeamData

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TimelineTeamData

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for TimelineTeamData

source§

fn default() -> TimelineTeamData

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for TimelineTeamData

source§

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 TimelineTeamData

source§

fn eq(&self, other: &TimelineTeamData) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for TimelineTeamData

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for TimelineTeamData

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,