pub enum ComparisonOp {
Gt,
Lt,
Eq,
Ne,
Ge,
Le,
}Expand description
Element-wise comparison operations that produce Bool-typed columns.
Null propagation: any missing/NaN input produces a missing output.
This matches pandas nullable-integer semantics (pd.NA propagation).
Variants§
Trait Implementations§
Source§impl Clone for ComparisonOp
impl Clone for ComparisonOp
Source§fn clone(&self) -> ComparisonOp
fn clone(&self) -> ComparisonOp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ComparisonOp
Source§impl Debug for ComparisonOp
impl Debug for ComparisonOp
Source§impl<'de> Deserialize<'de> for ComparisonOp
impl<'de> Deserialize<'de> for ComparisonOp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ComparisonOp
Source§impl PartialEq for ComparisonOp
impl PartialEq for ComparisonOp
Source§fn eq(&self, other: &ComparisonOp) -> bool
fn eq(&self, other: &ComparisonOp) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ComparisonOp
impl Serialize for ComparisonOp
impl StructuralPartialEq for ComparisonOp
Auto Trait Implementations§
impl Freeze for ComparisonOp
impl RefUnwindSafe for ComparisonOp
impl Send for ComparisonOp
impl Sync for ComparisonOp
impl Unpin for ComparisonOp
impl UnsafeUnpin for ComparisonOp
impl UnwindSafe for ComparisonOp
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