pub struct TeamIterationAttributes {
pub finish_date: Option<OffsetDateTime>,
pub start_date: Option<OffsetDateTime>,
pub time_frame: Option<TimeFrame>,
}Fields§
§finish_date: Option<OffsetDateTime>Finish date of the iteration. Date-only, correct unadjusted at midnight in UTC.
start_date: Option<OffsetDateTime>Start date of the iteration. Date-only, correct unadjusted at midnight in UTC.
time_frame: Option<TimeFrame>Time frame of the iteration, such as past, current or future.
Implementations§
Trait Implementations§
Source§impl Clone for TeamIterationAttributes
impl Clone for TeamIterationAttributes
Source§fn clone(&self) -> TeamIterationAttributes
fn clone(&self) -> TeamIterationAttributes
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 TeamIterationAttributes
impl Debug for TeamIterationAttributes
Source§impl Default for TeamIterationAttributes
impl Default for TeamIterationAttributes
Source§fn default() -> TeamIterationAttributes
fn default() -> TeamIterationAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamIterationAttributes
impl<'de> Deserialize<'de> for TeamIterationAttributes
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 TeamIterationAttributes
impl PartialEq for TeamIterationAttributes
Source§impl Serialize for TeamIterationAttributes
impl Serialize for TeamIterationAttributes
impl StructuralPartialEq for TeamIterationAttributes
Auto Trait Implementations§
impl Freeze for TeamIterationAttributes
impl RefUnwindSafe for TeamIterationAttributes
impl Send for TeamIterationAttributes
impl Sync for TeamIterationAttributes
impl Unpin for TeamIterationAttributes
impl UnwindSafe for TeamIterationAttributes
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