pub enum TIFR {
NOTRIGGER,
TRIGGER,
}
Expand description
Possible values of the field TIF
Variants§
Implementations§
Source§impl TIFR
impl TIFR
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_no_trigger(&self) -> bool
pub fn is_no_trigger(&self) -> bool
Checks if the value of the field is NOTRIGGER
Sourcepub fn is_trigger(&self) -> bool
pub fn is_trigger(&self) -> bool
Checks if the value of the field is TRIGGER
Trait Implementations§
impl Copy for TIFR
impl StructuralPartialEq for TIFR
Auto Trait Implementations§
impl Freeze for TIFR
impl RefUnwindSafe for TIFR
impl Send for TIFR
impl Sync for TIFR
impl Unpin for TIFR
impl UnwindSafe for TIFR
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