pub enum CC4OFR {
OVERCAPTURE,
_Reserved(bool),
}
Expand description
Possible values of the field CC4OF
Variants§
OVERCAPTURE
The counter value has been captured in TIMx_CCRx register while CCxIF flag was already set
_Reserved(bool)
Reserved
Implementations§
Source§impl CC4OFR
impl CC4OFR
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_overcapture(&self) -> bool
pub fn is_overcapture(&self) -> bool
Checks if the value of the field is OVERCAPTURE
Trait Implementations§
impl Copy for CC4OFR
impl StructuralPartialEq for CC4OFR
Auto Trait Implementations§
impl Freeze for CC4OFR
impl RefUnwindSafe for CC4OFR
impl Send for CC4OFR
impl Sync for CC4OFR
impl Unpin for CC4OFR
impl UnwindSafe for CC4OFR
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