pub struct StageAlert {
pub stage: RenderStage,
pub is_alert: bool,
pub observed: f64,
pub threshold: f64,
pub e_value: f64,
pub calibration_count: usize,
}Expand description
Alert decision for a single stage.
Fields§
§stage: RenderStage§is_alert: boolWhether this stage exceeded its conformal threshold.
observed: f64The observed value.
threshold: f64The conformal threshold (quantile-based).
e_value: f64Current e-process value (anytime-valid evidence).
calibration_count: usizeNumber of calibration samples for this stage.
Trait Implementations§
Source§impl Clone for StageAlert
impl Clone for StageAlert
Source§fn clone(&self) -> StageAlert
fn clone(&self) -> StageAlert
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 moreAuto Trait Implementations§
impl Freeze for StageAlert
impl RefUnwindSafe for StageAlert
impl Send for StageAlert
impl Sync for StageAlert
impl Unpin for StageAlert
impl UnsafeUnpin for StageAlert
impl UnwindSafe for StageAlert
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