pub trait LogicalNot {
type Output;
// Required method
fn not(self) -> Self::Output;
}Expand description
Trait for performing logical NOT operations.
pub trait LogicalNot {
type Output;
// Required method
fn not(self) -> Self::Output;
}Trait for performing logical NOT operations.