pub enum BoolOp {
And,
Or,
Xor,
}Expand description
A three-valued logical op for Column::logical (pandas & / | / ^ on
bool columns, Kleene semantics).
Variants§
And
Logical AND (a present false short-circuits to false).
Or
Logical OR (a present true short-circuits to true).
Xor
Logical XOR (missing if either operand is missing).
Trait Implementations§
impl Copy for BoolOp
impl Eq for BoolOp
impl StructuralPartialEq for BoolOp
Auto Trait Implementations§
impl Freeze for BoolOp
impl RefUnwindSafe for BoolOp
impl Send for BoolOp
impl Sync for BoolOp
impl Unpin for BoolOp
impl UnsafeUnpin for BoolOp
impl UnwindSafe for BoolOp
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