pub enum RankStability {
Stable,
Marginal,
Unstable,
}Expand description
Stability classification for a rank position.
Variants§
Stable
Score gap is large relative to the distribution — rank is reliable.
Marginal
Score gap is moderate — rank is plausible but could swap with neighbors.
Unstable
Score gap is negligible — rank is essentially a tie.
Implementations§
Trait Implementations§
Source§impl Clone for RankStability
impl Clone for RankStability
Source§fn clone(&self) -> RankStability
fn clone(&self) -> RankStability
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 RankStability
impl Debug for RankStability
Source§impl PartialEq for RankStability
impl PartialEq for RankStability
impl Copy for RankStability
impl Eq for RankStability
impl StructuralPartialEq for RankStability
Auto Trait Implementations§
impl Freeze for RankStability
impl RefUnwindSafe for RankStability
impl Send for RankStability
impl Sync for RankStability
impl Unpin for RankStability
impl UnsafeUnpin for RankStability
impl UnwindSafe for RankStability
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.