pub enum RankMethod {
Minimum,
Maximum,
Average,
}
Expand description
Method for breaking ties among ranks. Either the minimum, maximum, or average rank can be used.
Variants§
Trait Implementations§
Source§impl Clone for RankMethod
impl Clone for RankMethod
Source§fn clone(&self) -> RankMethod
fn clone(&self) -> RankMethod
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 moreimpl Copy for RankMethod
Auto Trait Implementations§
impl Freeze for RankMethod
impl RefUnwindSafe for RankMethod
impl Send for RankMethod
impl Sync for RankMethod
impl Unpin for RankMethod
impl UnwindSafe for RankMethod
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