pub trait ChunkCompareIneq<Rhs> {
type Item;
// Required methods
fn gt(&self, rhs: Rhs) -> Self::Item;
fn gt_eq(&self, rhs: Rhs) -> Self::Item;
fn lt(&self, rhs: Rhs) -> Self::Item;
fn lt_eq(&self, rhs: Rhs) -> Self::Item;
}Expand description
Compare Series and ChunkedArray’s using inequality operators (<, >=, etc.) and get
a boolean mask that can be used to filter rows.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".