pub trait NotPartial {
type Output;
// Required method
fn not_partial(self, start: u8, len: u8) -> Self::Output;
}Expand description
Bitwise ! (not) operation on a subset of the bits of
self.
pub trait NotPartial {
type Output;
// Required method
fn not_partial(self, start: u8, len: u8) -> Self::Output;
}Bitwise ! (not) operation on a subset of the bits of
self.