Struct azure_devops_rust_api::work::models::TimelineTeamIteration
source · pub struct TimelineTeamIteration {
pub css_node_id: Option<String>,
pub finish_date: Option<OffsetDateTime>,
pub name: Option<String>,
pub partially_paged_work_items: Vec<Vec<Value>>,
pub path: Option<String>,
pub start_date: Option<OffsetDateTime>,
pub status: Option<TimelineIterationStatus>,
pub work_items: Vec<Vec<Value>>,
}Expand description
Fields§
§css_node_id: Option<String>The iteration CSS Node Id
finish_date: Option<OffsetDateTime>The end date of the iteration
name: Option<String>The iteration name
partially_paged_work_items: Vec<Vec<Value>>All the partially paged workitems in this iteration.
path: Option<String>The iteration path
start_date: Option<OffsetDateTime>The start date of the iteration
status: Option<TimelineIterationStatus>§work_items: Vec<Vec<Value>>The work items that have been paged in this iteration
Implementations§
Trait Implementations§
source§impl Clone for TimelineTeamIteration
impl Clone for TimelineTeamIteration
source§fn clone(&self) -> TimelineTeamIteration
fn clone(&self) -> TimelineTeamIteration
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 TimelineTeamIteration
impl Debug for TimelineTeamIteration
source§impl Default for TimelineTeamIteration
impl Default for TimelineTeamIteration
source§fn default() -> TimelineTeamIteration
fn default() -> TimelineTeamIteration
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TimelineTeamIteration
impl<'de> Deserialize<'de> for TimelineTeamIteration
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 TimelineTeamIteration
impl PartialEq for TimelineTeamIteration
source§fn eq(&self, other: &TimelineTeamIteration) -> bool
fn eq(&self, other: &TimelineTeamIteration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for TimelineTeamIteration
impl Serialize for TimelineTeamIteration
impl StructuralPartialEq for TimelineTeamIteration
Auto Trait Implementations§
impl Freeze for TimelineTeamIteration
impl RefUnwindSafe for TimelineTeamIteration
impl Send for TimelineTeamIteration
impl Sync for TimelineTeamIteration
impl Unpin for TimelineTeamIteration
impl UnwindSafe for TimelineTeamIteration
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