pub struct FlowMetricsV1 {
pub throughput: f64,
pub arrival_rate: f64,
pub wip: usize,
pub queue_growth: f64,
pub lead_time: Option<f64>,
pub cycle_time: Option<f64>,
pub active_time: Option<f64>,
pub blocked_time: Option<f64>,
pub review_wait: Option<f64>,
pub deployment_wait: Option<f64>,
pub flow_efficiency: Option<f64>,
pub sample_count: usize,
}Fields§
§throughput: f64§arrival_rate: f64§wip: usize§queue_growth: f64§lead_time: Option<f64>§cycle_time: Option<f64>§active_time: Option<f64>§blocked_time: Option<f64>§review_wait: Option<f64>§deployment_wait: Option<f64>§flow_efficiency: Option<f64>§sample_count: usizeTrait Implementations§
Source§impl Clone for FlowMetricsV1
impl Clone for FlowMetricsV1
Source§fn clone(&self) -> FlowMetricsV1
fn clone(&self) -> FlowMetricsV1
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 Debug for FlowMetricsV1
impl Debug for FlowMetricsV1
Source§impl<'de> Deserialize<'de> for FlowMetricsV1
impl<'de> Deserialize<'de> for FlowMetricsV1
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 FlowMetricsV1
impl PartialEq for FlowMetricsV1
Source§impl Serialize for FlowMetricsV1
impl Serialize for FlowMetricsV1
impl StructuralPartialEq for FlowMetricsV1
Auto Trait Implementations§
impl Freeze for FlowMetricsV1
impl RefUnwindSafe for FlowMetricsV1
impl Send for FlowMetricsV1
impl Sync for FlowMetricsV1
impl Unpin for FlowMetricsV1
impl UnsafeUnpin for FlowMetricsV1
impl UnwindSafe for FlowMetricsV1
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