pub enum AnomalyKind {
SlowFrame,
HighMemory,
TestFailure,
TimingSpike,
NonDeterministic,
}Expand description
Types of anomalies that can be detected
Variants§
SlowFrame
Frame took longer than threshold
HighMemory
Memory usage exceeded threshold
TestFailure
Test failure detected
TimingSpike
Timing variance spike
NonDeterministic
Non-deterministic behavior
Trait Implementations§
Source§impl Clone for AnomalyKind
impl Clone for AnomalyKind
Source§fn clone(&self) -> AnomalyKind
fn clone(&self) -> AnomalyKind
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 AnomalyKind
impl Debug for AnomalyKind
Source§impl PartialEq for AnomalyKind
impl PartialEq for AnomalyKind
impl Copy for AnomalyKind
impl Eq for AnomalyKind
impl StructuralPartialEq for AnomalyKind
Auto Trait Implementations§
impl Freeze for AnomalyKind
impl RefUnwindSafe for AnomalyKind
impl Send for AnomalyKind
impl Sync for AnomalyKind
impl Unpin for AnomalyKind
impl UnsafeUnpin for AnomalyKind
impl UnwindSafe for AnomalyKind
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