pub enum SampleDecision {
Complete(OracleResult),
NeedMore,
}Expand description
Decision returned by Analyzer::evaluate after inspecting the current sample set.
Variants§
Complete(OracleResult)
Enough samples collected; here is the final result.
NeedMore
Differential detected but not yet confirmed stable — collect one more pair.
Auto Trait Implementations§
impl Freeze for SampleDecision
impl RefUnwindSafe for SampleDecision
impl Send for SampleDecision
impl Sync for SampleDecision
impl Unpin for SampleDecision
impl UnsafeUnpin for SampleDecision
impl UnwindSafe for SampleDecision
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