pub enum RT0 {
Disabled = 0,
Enabled = 1,
}Expand description
Rising trigger event configuration bit of configurable event input x When EXTI_SECCFGR.SECx is disabled, RTx can be accessed with non-secure and secure access. When EXTI_SECCFGR.SECx is enabled, RTx can only be accessed with secure access. Non-secure write to this bit x is discarded and non-secure read returns 0. When EXTI_PRIVCFGR.PRIVx is disabled, RTx can be accessed with unprivileged and privileged access. When EXTI_PRIVCFGR.PRIVx is enabled, RTx can only be accessed with privileged access. Unprivileged write to this bit x is discarded, unprivileged read returns 0.
Value on reset: 0
Variants§
Trait Implementations§
impl Copy for RT0
impl Eq for RT0
impl StructuralPartialEq for RT0
Auto Trait Implementations§
impl Freeze for RT0
impl RefUnwindSafe for RT0
impl Send for RT0
impl Sync for RT0
impl Unpin for RT0
impl UnwindSafe for RT0
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