Skip to main content

AdaptiveOutcome

Enum AdaptiveOutcome 

Source
pub enum AdaptiveOutcome {
    LeakDetected {
        posterior: Posterior,
        samples_per_class: usize,
        elapsed_secs: f64,
    },
    NoLeakDetected {
        posterior: Posterior,
        samples_per_class: usize,
        elapsed_secs: f64,
    },
    Inconclusive {
        reason: InconclusiveReason,
        posterior: Option<Posterior>,
        samples_per_class: usize,
        elapsed_secs: f64,
    },
    ThresholdElevated {
        posterior: Posterior,
        theta_user: f64,
        theta_eff: f64,
        theta_tick: f64,
        achievable_at_max: bool,
        samples_per_class: usize,
        elapsed_secs: f64,
    },
}
Expand description

Outcome of an adaptive sampling decision (no_std compatible).

Uses f64 for elapsed time instead of std::time::Duration.

Variants§

§

LeakDetected

Leak probability exceeded fail threshold - timing leak detected.

Fields

§posterior: Posterior

Final posterior distribution.

§samples_per_class: usize

Number of samples collected per class.

§elapsed_secs: f64

Time spent in seconds.

§

NoLeakDetected

Leak probability dropped below pass threshold - no significant leak.

Fields

§posterior: Posterior

Final posterior distribution.

§samples_per_class: usize

Number of samples collected per class.

§elapsed_secs: f64

Time spent in seconds.

§

Inconclusive

A quality gate triggered before reaching a decision.

Fields

§reason: InconclusiveReason

Reason for stopping.

§posterior: Option<Posterior>

Final posterior distribution (if available).

§samples_per_class: usize

Number of samples collected per class.

§elapsed_secs: f64

Time spent in seconds.

§

ThresholdElevated

Threshold was elevated and pass criterion was met at effective threshold (v5.5).

P < pass_threshold at θ_eff, but θ_eff > θ_user + ε. This is semantically distinct from both Pass (can’t guarantee user threshold) and Inconclusive (not a quality issue - we got a clear statistical result).

Fields

§posterior: Posterior

Final posterior distribution.

§theta_user: f64

User’s requested threshold (θ_user).

§theta_eff: f64

Effective threshold used (θ_eff).

§theta_tick: f64

Timer tick floor (θ_tick).

§achievable_at_max: bool

Whether threshold is achievable at max_samples.

§samples_per_class: usize

Number of samples collected per class.

§elapsed_secs: f64

Time spent in seconds.

Implementations§

Source§

impl AdaptiveOutcome

Source

pub fn leak_probability(&self) -> Option<f64>

Get the final leak probability, if available.

Source

pub fn is_leak_detected(&self) -> bool

Check if the outcome indicates a leak was detected.

Source

pub fn is_conclusive(&self) -> bool

Check if the outcome is conclusive (either pass or fail).

Note: ThresholdElevated is NOT considered conclusive in v5.5 - it means we got a statistical result but can’t guarantee the user’s threshold.

Source

pub fn is_threshold_elevated(&self) -> bool

Check if the threshold was elevated beyond tolerance (v5.5).

Source

pub fn samples_per_class(&self) -> usize

Get the number of samples per class.

Source

pub fn elapsed_secs(&self) -> f64

Get elapsed time in seconds.

Source

pub fn to_summary(&self, calibration: &Calibration) -> OutcomeSummary

Convert to an FFI-friendly summary containing only scalar fields.

This centralizes the conversion logic that was previously duplicated across NAPI and C bindings, using canonical effect pattern classification.

Trait Implementations§

Source§

impl Clone for AdaptiveOutcome

Source§

fn clone(&self) -> AdaptiveOutcome

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AdaptiveOutcome

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.