pub enum WorkloadVerdict {
Beats,
Regresses,
InsufficientSamples,
Missing,
}Expand description
Diagnostic verdict for a single workload.
Variants§
Beats
Candidate beat SQLite by at least threshold on every required metric
and matched or beat SQLite on every observed lock-behavior metric.
Regresses
Candidate failed at least one required metric or lock-behavior metric.
InsufficientSamples
Fewer than MIN_SAMPLES_PER_WORKLOAD samples; insufficient evidence.
Missing
No samples carried this workload at all.
Trait Implementations§
Source§impl Clone for WorkloadVerdict
impl Clone for WorkloadVerdict
Source§fn clone(&self) -> WorkloadVerdict
fn clone(&self) -> WorkloadVerdict
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WorkloadVerdict
impl Debug for WorkloadVerdict
impl Eq for WorkloadVerdict
Source§impl PartialEq for WorkloadVerdict
impl PartialEq for WorkloadVerdict
Source§impl Serialize for WorkloadVerdict
impl Serialize for WorkloadVerdict
impl StructuralPartialEq for WorkloadVerdict
Auto Trait Implementations§
impl Freeze for WorkloadVerdict
impl RefUnwindSafe for WorkloadVerdict
impl Send for WorkloadVerdict
impl Sync for WorkloadVerdict
impl Unpin for WorkloadVerdict
impl UnsafeUnpin for WorkloadVerdict
impl UnwindSafe for WorkloadVerdict
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.