LogicalAnd

Trait LogicalAnd 

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

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

Trait for performing logical AND operations.

Required Associated Types§

Source

type Output

The resulting type after performing the logical AND operation.

Required Methods§

Source

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

Perform a logical AND operation between two values.

Implementations on Foreign Types§

Source§

impl LogicalAnd for &BoolScalar

Source§

impl LogicalAnd for &BoolVector

Source§

impl LogicalAnd<&BoolDatum> for &BoolDatum

Implementors§