pub struct EProcessSnapshot {
pub evalue: f64,
pub observations: u64,
pub rejection_threshold: f64,
pub priority_threshold: u8,
pub last_signal: Option<EProcessSignal>,
}Expand description
Snapshot of oracle state for diagnostics.
Fields§
§evalue: f64Current e-value (encoded as f64 bits).
observations: u64Total observations processed.
rejection_threshold: f64Current rejection threshold (1 / alpha).
priority_threshold: u8Priority must be strictly greater than this threshold to be shed.
last_signal: Option<EProcessSignal>Most recent telemetry signal, when one was recorded.
Trait Implementations§
Source§impl Clone for EProcessSnapshot
impl Clone for EProcessSnapshot
Source§fn clone(&self) -> EProcessSnapshot
fn clone(&self) -> EProcessSnapshot
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 EProcessSnapshot
impl Debug for EProcessSnapshot
Source§impl PartialEq for EProcessSnapshot
impl PartialEq for EProcessSnapshot
impl StructuralPartialEq for EProcessSnapshot
Auto Trait Implementations§
impl Freeze for EProcessSnapshot
impl RefUnwindSafe for EProcessSnapshot
impl Send for EProcessSnapshot
impl Sync for EProcessSnapshot
impl Unpin for EProcessSnapshot
impl UnsafeUnpin for EProcessSnapshot
impl UnwindSafe for EProcessSnapshot
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).