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.
pub trait LogicalAndNot<Rhs = Self> {
type Output;
// Required method
fn and_not(self, other: Rhs) -> Self::Output;
}Trait for performing logical AND NOT operations.