pub trait BitComplement {
type Output;
// Required method
fn complement(self) -> Self::Output;
}Expand description
Trait to get dual set to the given.
pub trait BitComplement {
type Output;
// Required method
fn complement(self) -> Self::Output;
}Trait to get dual set to the given.