pub enum PrecisionStatus {
MetGoal,
Near,
Unmet,
NoiseFloorHit,
}Expand description
Multi-level precision status.
Variants§
MetGoal
95th-percentile posterior std is within the user’s tolerance.
Near
Within 10% of the tolerance — almost there.
Unmet
Not yet within tolerance; more samples are needed.
NoiseFloorHit
Posterior variance has plateaued; hardware noise is the bottleneck.
This is set externally when Algorithm 4 reports likely_at_floor=true.
Trait Implementations§
Source§impl Clone for PrecisionStatus
impl Clone for PrecisionStatus
Source§fn clone(&self) -> PrecisionStatus
fn clone(&self) -> PrecisionStatus
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 PrecisionStatus
impl Debug for PrecisionStatus
Source§impl PartialEq for PrecisionStatus
impl PartialEq for PrecisionStatus
Source§fn eq(&self, other: &PrecisionStatus) -> bool
fn eq(&self, other: &PrecisionStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrecisionStatus
Auto Trait Implementations§
impl Freeze for PrecisionStatus
impl RefUnwindSafe for PrecisionStatus
impl Send for PrecisionStatus
impl Sync for PrecisionStatus
impl Unpin for PrecisionStatus
impl UnsafeUnpin for PrecisionStatus
impl UnwindSafe for PrecisionStatus
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