#[repr(u8)]pub enum ProbeStatus {
Disabled = 0,
Running = 1,
Complete = 2,
Failed = 3,
CacheHit = 4,
}Expand description
Status of the background memory probe.
Stored in AppState.probe_status as an AtomicU8 so it can be updated
from the background probe task without holding a lock.
Variants§
Disabled = 0
Probe not run — a cost-model override (BGE_M3_DISABLE_AUTO_BUDGET,
BGE_M3_TOKEN_BUDGET, or explicit A/B env vars) was in effect.
Running = 1
Probe is running in the background; workers are using conservative defaults.
Complete = 2
Probe completed successfully; fitted (a, b) are now active.
Failed = 3
Probe failed or produced invalid coefficients; conservative defaults remain.
CacheHit = 4
Probe was skipped — valid coefficients loaded from the EFS cache file.
Implementations§
Trait Implementations§
Source§impl Clone for ProbeStatus
impl Clone for ProbeStatus
Source§fn clone(&self) -> ProbeStatus
fn clone(&self) -> ProbeStatus
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 ProbeStatus
impl Debug for ProbeStatus
Source§impl PartialEq for ProbeStatus
impl PartialEq for ProbeStatus
impl Copy for ProbeStatus
impl Eq for ProbeStatus
impl StructuralPartialEq for ProbeStatus
Auto Trait Implementations§
impl Freeze for ProbeStatus
impl RefUnwindSafe for ProbeStatus
impl Send for ProbeStatus
impl Sync for ProbeStatus
impl Unpin for ProbeStatus
impl UnsafeUnpin for ProbeStatus
impl UnwindSafe for ProbeStatus
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more