pub enum CSRR {
DISABLED,
ENABLED,
}
Expand description
Possible values of the field CSR
Variants§
DISABLED
Counters roll over to zero after reaching the maximum value
ENABLED
Counters do not roll over to zero after reaching the maximum value
Implementations§
Source§impl CSRR
impl CSRR
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_disabled(&self) -> bool
pub fn is_disabled(&self) -> bool
Checks if the value of the field is DISABLED
Sourcepub fn is_enabled(&self) -> bool
pub fn is_enabled(&self) -> bool
Checks if the value of the field is ENABLED
Trait Implementations§
impl Copy for CSRR
impl StructuralPartialEq for CSRR
Auto Trait Implementations§
impl Freeze for CSRR
impl RefUnwindSafe for CSRR
impl Send for CSRR
impl Sync for CSRR
impl Unpin for CSRR
impl UnwindSafe for CSRR
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