pub trait LogicalAnd<Rhs = Self> {
type Output;
// Required method
fn and(self, other: Rhs) -> Self::Output;
}Expand description
Trait for performing logical AND operations.
pub trait LogicalAnd<Rhs = Self> {
type Output;
// Required method
fn and(self, other: Rhs) -> Self::Output;
}Trait for performing logical AND operations.