pub enum Verdict {
Pass,
Warn,
Fail,
Na,
}Expand description
Result of evaluating a metric against quality thresholds.
Variants§
Pass
Metric is within expected range for genuine randomness.
Warn
Metric is borderline — not a definitive failure.
Fail
Metric is outside the expected range.
Na
Metric could not be computed (NaN, insufficient data, etc.).
Implementations§
Trait Implementations§
impl Copy for Verdict
impl Eq for Verdict
impl StructuralPartialEq for Verdict
Auto Trait Implementations§
impl Freeze for Verdict
impl RefUnwindSafe for Verdict
impl Send for Verdict
impl Sync for Verdict
impl Unpin for Verdict
impl UnsafeUnpin for Verdict
impl UnwindSafe for Verdict
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