pub enum ODDR {
EVEN,
ODD,
}
Expand description
Possible values of the field ODD
Variants§
Implementations§
Source§impl ODDR
impl ODDR
Sourcepub fn bit_is_clear(&self) -> bool
pub fn bit_is_clear(&self) -> bool
Returns true
if the bit is clear (0)
Sourcepub fn bit_is_set(&self) -> bool
pub fn bit_is_set(&self) -> bool
Returns true
if the bit is set (1)
Trait Implementations§
impl Copy for ODDR
impl StructuralPartialEq for ODDR
Auto Trait Implementations§
impl Freeze for ODDR
impl RefUnwindSafe for ODDR
impl Send for ODDR
impl Sync for ODDR
impl Unpin for ODDR
impl UnwindSafe for ODDR
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more