pub struct FlowSamples<'a> {
pub lead_times_hours: &'a [f64],
pub cycle_times_hours: &'a [f64],
pub active_times_hours: &'a [f64],
pub blocked_times_hours: &'a [f64],
pub review_wait_times_hours: &'a [f64],
pub deployment_wait_times_hours: &'a [f64],
}Fields§
§lead_times_hours: &'a [f64]§cycle_times_hours: &'a [f64]§active_times_hours: &'a [f64]§blocked_times_hours: &'a [f64]§review_wait_times_hours: &'a [f64]§deployment_wait_times_hours: &'a [f64]Trait Implementations§
Source§impl<'a> Clone for FlowSamples<'a>
impl<'a> Clone for FlowSamples<'a>
Source§fn clone(&self) -> FlowSamples<'a>
fn clone(&self) -> FlowSamples<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for FlowSamples<'a>
impl<'a> Debug for FlowSamples<'a>
Source§impl<'a> PartialEq for FlowSamples<'a>
impl<'a> PartialEq for FlowSamples<'a>
impl<'a> StructuralPartialEq for FlowSamples<'a>
Auto Trait Implementations§
impl<'a> Freeze for FlowSamples<'a>
impl<'a> RefUnwindSafe for FlowSamples<'a>
impl<'a> Send for FlowSamples<'a>
impl<'a> Sync for FlowSamples<'a>
impl<'a> Unpin for FlowSamples<'a>
impl<'a> UnsafeUnpin for FlowSamples<'a>
impl<'a> UnwindSafe for FlowSamples<'a>
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