pub enum URSR {
ANYEVENT,
COUNTERONLY,
}
Expand description
Possible values of the field URS
Variants§
ANYEVENT
Any of counter overflow/underflow, setting UG, or update through slave mode, generates an update interrupt or DMA request
COUNTERONLY
Only counter overflow/underflow generates an update interrupt or DMA request
Implementations§
Source§impl URSR
impl URSR
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_any_event(&self) -> bool
pub fn is_any_event(&self) -> bool
Checks if the value of the field is ANYEVENT
Sourcepub fn is_counter_only(&self) -> bool
pub fn is_counter_only(&self) -> bool
Checks if the value of the field is COUNTERONLY
Trait Implementations§
impl Copy for URSR
impl StructuralPartialEq for URSR
Auto Trait Implementations§
impl Freeze for URSR
impl RefUnwindSafe for URSR
impl Send for URSR
impl Sync for URSR
impl Unpin for URSR
impl UnwindSafe for URSR
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