pub enum GuardState {
Warmup,
Calibrated,
AtRisk,
}Expand description
State of the conformal frame guard.
Variants§
Warmup
Insufficient calibration data; using fixed fallback threshold.
Calibrated
Calibrated with enough samples; conformal intervals active.
AtRisk
Last prediction indicated p99 exceeds budget.
Implementations§
Trait Implementations§
Source§impl Clone for GuardState
impl Clone for GuardState
Source§fn clone(&self) -> GuardState
fn clone(&self) -> GuardState
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 moreSource§impl Debug for GuardState
impl Debug for GuardState
Source§impl PartialEq for GuardState
impl PartialEq for GuardState
impl Copy for GuardState
impl Eq for GuardState
impl StructuralPartialEq for GuardState
Auto Trait Implementations§
impl Freeze for GuardState
impl RefUnwindSafe for GuardState
impl Send for GuardState
impl Sync for GuardState
impl Unpin for GuardState
impl UnsafeUnpin for GuardState
impl UnwindSafe for GuardState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.