pub struct TChartPoint {
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 T chart.
Fields§
§index: usizeZero-based index of this inter-event observation.
value: f64The observed inter-event time.
ucl: f64Upper control limit.
cl: f64Center line (mean inter-event time).
lcl: f64Lower control limit (clamped to 0).
out_of_control: boolWhether this point lies beyond its control limits.
Trait Implementations§
Source§impl Clone for TChartPoint
impl Clone for TChartPoint
Source§fn clone(&self) -> TChartPoint
fn clone(&self) -> TChartPoint
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 TChartPoint
impl RefUnwindSafe for TChartPoint
impl Send for TChartPoint
impl Sync for TChartPoint
impl Unpin for TChartPoint
impl UnsafeUnpin for TChartPoint
impl UnwindSafe for TChartPoint
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