pub trait DataFrameIsSorted {
// Required method
fn is_sorted(
&self,
by: &[PlSmallStr],
descending: &[bool],
nulls_last: &[bool],
) -> Result<bool, PolarsError>;
}Required Methods§
fn is_sorted( &self, by: &[PlSmallStr], descending: &[bool], nulls_last: &[bool], ) -> Result<bool, PolarsError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".