pub enum PARITYR {
NOTPRESENT,
PRESENT,
}Expand description
Possible values of the field PARITY
Variants§
Implementations§
Source§impl PARITYR
impl PARITYR
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)
Sourcepub fn is_not_present(&self) -> bool
pub fn is_not_present(&self) -> bool
Checks if the value of the field is NOTPRESENT
Sourcepub fn is_present(&self) -> bool
pub fn is_present(&self) -> bool
Checks if the value of the field is PRESENT
Trait Implementations§
impl Copy for PARITYR
impl StructuralPartialEq for PARITYR
Auto Trait Implementations§
impl Freeze for PARITYR
impl RefUnwindSafe for PARITYR
impl Send for PARITYR
impl Sync for PARITYR
impl Unpin for PARITYR
impl UnsafeUnpin for PARITYR
impl UnwindSafe for PARITYR
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