pub trait AndNot {
    type Output;

    fn andnot(self, rhs: Self) -> Self::Output;
}

Required Associated Types

Required Methods

Implementors