Struct polars::prelude::RankOptions  
source · pub struct RankOptions {
    pub method: RankMethod,
    pub descending: bool,
}Available on crate feature 
lazy only.Fields§
§method: RankMethod§descending: boolTrait Implementations§
source§impl Clone for RankOptions
 
impl Clone for RankOptions
source§fn clone(&self) -> RankOptions
 
fn clone(&self) -> RankOptions
Returns a copy 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 RankOptions
 
impl Debug for RankOptions
source§impl Default for RankOptions
 
impl Default for RankOptions
source§fn default() -> RankOptions
 
fn default() -> RankOptions
Returns the “default value” for a type. Read more
source§impl Hash for RankOptions
 
impl Hash for RankOptions
source§impl PartialEq for RankOptions
 
impl PartialEq for RankOptions
source§fn eq(&self, other: &RankOptions) -> bool
 
fn eq(&self, other: &RankOptions) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for RankOptions
impl StructuralPartialEq for RankOptions
Auto Trait Implementations§
impl Freeze for RankOptions
impl RefUnwindSafe for RankOptions
impl Send for RankOptions
impl Sync for RankOptions
impl Unpin for RankOptions
impl UnwindSafe for RankOptions
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> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
 
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more