Enum Isf
#[repr(u32)]pub enum Isf {
_0 = 0,
_1 = 1,
}Expand description
Interrupt Status Flag
Value on reset: 0
Variants§
_0 = 0
0: Configured interrupt is not detected.
_1 = 1
1: Configured interrupt is detected. If the pin is configured to generate a DMA request, then the corresponding flag will be cleared automatically at the completion of the requested DMA transfer. Otherwise, the flag remains set until a logic 1 is written to the flag. If the pin is configured for a level sensitive interrupt and the pin remains asserted, then the flag is set again immediately after it is cleared.
Trait Implementations§
impl Copy for Isf
impl Eq for Isf
impl IsEnum for Isf
impl StructuralPartialEq for Isf
Auto Trait Implementations§
impl Freeze for Isf
impl RefUnwindSafe for Isf
impl Send for Isf
impl Sync for Isf
impl Unpin for Isf
impl UnwindSafe for Isf
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