pub struct GChartPoint {
pub index: usize,
pub value: f64,
pub ucl: f64,
pub cl: f64,
pub lcl: f64,
pub out_of_control: bool,
}Expand description
A single data point on a G or T chart.
Fields§
§index: usizeZero-based index of this inter-event observation.
value: f64The observed inter-event count (for G) or time (for T).
ucl: f64Upper control limit.
cl: f64Center line (mean of the series).
lcl: f64Lower control limit (clamped to 0).
out_of_control: boolWhether this point lies beyond its control limits.
Trait Implementations§
Source§impl Clone for GChartPoint
impl Clone for GChartPoint
Source§fn clone(&self) -> GChartPoint
fn clone(&self) -> GChartPoint
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for GChartPoint
impl RefUnwindSafe for GChartPoint
impl Send for GChartPoint
impl Sync for GChartPoint
impl Unpin for GChartPoint
impl UnsafeUnpin for GChartPoint
impl UnwindSafe for GChartPoint
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