pub struct IterationCapacity {
pub teams: Vec<TeamCapacityTotals>,
pub total_iteration_capacity_per_day: Option<f64>,
pub total_iteration_days_off: Option<i32>,
}Expand description
Capacity and teams for all teams in an iteration
Fields§
§teams: Vec<TeamCapacityTotals>§total_iteration_capacity_per_day: Option<f64>§total_iteration_days_off: Option<i32>Implementations§
Trait Implementations§
Source§impl Clone for IterationCapacity
impl Clone for IterationCapacity
Source§fn clone(&self) -> IterationCapacity
fn clone(&self) -> IterationCapacity
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 IterationCapacity
impl Debug for IterationCapacity
Source§impl Default for IterationCapacity
impl Default for IterationCapacity
Source§fn default() -> IterationCapacity
fn default() -> IterationCapacity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IterationCapacity
impl<'de> Deserialize<'de> for IterationCapacity
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 IterationCapacity
impl PartialEq for IterationCapacity
Source§impl Serialize for IterationCapacity
impl Serialize for IterationCapacity
impl StructuralPartialEq for IterationCapacity
Auto Trait Implementations§
impl Freeze for IterationCapacity
impl RefUnwindSafe for IterationCapacity
impl Send for IterationCapacity
impl Sync for IterationCapacity
impl Unpin for IterationCapacity
impl UnwindSafe for IterationCapacity
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