pub trait AndNot {
    type Output;
    fn andnot(self, rhs: Self) -> Self::Output;
}

Associated Types

Required methods

Implementors