pub enum GapSeverity {
HighestImpact,
LowestConfidence,
MostRecent,
}Expand description
How to sort/rank detected gaps.
Variants§
HighestImpact
Gaps with the most downstream impact first.
LowestConfidence
Gaps with the lowest confidence first.
MostRecent
Most recent gaps first.
Trait Implementations§
Source§impl Clone for GapSeverity
impl Clone for GapSeverity
Source§fn clone(&self) -> GapSeverity
fn clone(&self) -> GapSeverity
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 GapSeverity
impl Debug for GapSeverity
Source§impl PartialEq for GapSeverity
impl PartialEq for GapSeverity
impl Copy for GapSeverity
impl Eq for GapSeverity
impl StructuralPartialEq for GapSeverity
Auto Trait Implementations§
impl Freeze for GapSeverity
impl RefUnwindSafe for GapSeverity
impl Send for GapSeverity
impl Sync for GapSeverity
impl Unpin for GapSeverity
impl UnsafeUnpin for GapSeverity
impl UnwindSafe for GapSeverity
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.