LogicalAndNot

Trait LogicalAndNot 

Source
pub trait LogicalAndNot<Rhs = Self> {
    type Output;

    // Required method
    fn and_not(self, other: Rhs) -> Self::Output;
}
Expand description

Trait for performing logical AND NOT operations.

Required Associated Types§

Source

type Output

The resulting type after performing the logical AND NOT operation.

Required Methods§

Source

fn and_not(self, other: Rhs) -> Self::Output

Perform a logical AND NOT operation between two values.

Implementations on Foreign Types§

Source§

impl LogicalAndNot for &BoolScalar

Source§

impl LogicalAndNot for &BoolVector

Source§

impl LogicalAndNot<&BoolDatum> for &BoolDatum

Implementors§