Struct stm32f407g_disc::stm32::exti::RegisterBlock[]

#[repr(C)]
pub struct RegisterBlock { pub imr: Reg<u32, _IMR>, pub emr: Reg<u32, _EMR>, pub rtsr: Reg<u32, _RTSR>, pub ftsr: Reg<u32, _FTSR>, pub swier: Reg<u32, _SWIER>, pub pr: Reg<u32, _PR>, }

Register block

Fields

imr: Reg<u32, _IMR>

0x00 - Interrupt mask register (EXTI_IMR)

emr: Reg<u32, _EMR>

0x04 - Event mask register (EXTI_EMR)

rtsr: Reg<u32, _RTSR>

0x08 - Rising Trigger selection register (EXTI_RTSR)

ftsr: Reg<u32, _FTSR>

0x0c - Falling Trigger selection register (EXTI_FTSR)

swier: Reg<u32, _SWIER>

0x10 - Software interrupt event register (EXTI_SWIER)

pr: Reg<u32, _PR>

0x14 - Pending register (EXTI_PR)

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.