pub struct ComparisonReport {
pub window_days: u64,
pub assisted_change_share: AssistedChangeShare,
pub defect_density: DefectDensity,
pub defect_resolution_time: DefectResolutionTime,
}Expand description
The industry-comparison set (KRZ-333), folded over one window. Carried on
crate::outcomes::Outcomes::comparison when the fold options pin a
window; rendered as a clearly-separated secondary section after the
kranz-native metrics.
Fields§
§window_days: u64The window in effect (days, ending at the caller-pinned now).
defect_density: DefectDensity§defect_resolution_time: DefectResolutionTimeTrait Implementations§
Source§impl Clone for ComparisonReport
impl Clone for ComparisonReport
Source§fn clone(&self) -> ComparisonReport
fn clone(&self) -> ComparisonReport
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 ComparisonReport
impl Debug for ComparisonReport
Source§impl<'de> Deserialize<'de> for ComparisonReport
impl<'de> Deserialize<'de> for ComparisonReport
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 ComparisonReport
impl PartialEq for ComparisonReport
Source§impl Serialize for ComparisonReport
impl Serialize for ComparisonReport
impl StructuralPartialEq for ComparisonReport
Auto Trait Implementations§
impl Freeze for ComparisonReport
impl RefUnwindSafe for ComparisonReport
impl Send for ComparisonReport
impl Sync for ComparisonReport
impl Unpin for ComparisonReport
impl UnsafeUnpin for ComparisonReport
impl UnwindSafe for ComparisonReport
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