LogicalNot

Trait LogicalNot 

Source
pub trait LogicalNot {
    type Output;

    // Required method
    fn not(self) -> Self::Output;
}
Expand description

Trait for performing logical NOT operations.

Required Associated Types§

Source

type Output

The resulting type after performing the logical NOT operation.

Required Methods§

Source

fn not(self) -> Self::Output

Perform a logical NOT operation.

Implementations on Foreign Types§

Source§

impl LogicalNot for &BoolDatum

Source§

impl LogicalNot for &BoolScalar

Source§

impl LogicalNot for &BoolVector

Source§

impl LogicalNot for BoolVector

Source§

impl LogicalNot for BoolVectorMut

Implementors§