#[repr(C)]pub struct EXTI_ConfigTypeDef {
pub Line: u32,
pub Mode: u32,
pub Trigger: u32,
pub GPIOSel: u32,
}Expand description
@brief EXTI Configuration structure definition
Fields§
§Line: u32< The Exti line to be configured. This parameter can be a value of @ref EXTI_Line
Mode: u32< The Exit Mode to be configured for a core. This parameter can be a combination of @ref EXTI_Mode
Trigger: u32< The Exti Trigger to be configured. This parameter can be a value of @ref EXTI_Trigger
GPIOSel: u32< The Exti GPIO multiplexer selection to be configured. This parameter is only possible for line 0 to 15. It can be a value of @ref EXTI_GPIOSel
Trait Implementations§
Source§impl Clone for EXTI_ConfigTypeDef
impl Clone for EXTI_ConfigTypeDef
Source§fn clone(&self) -> EXTI_ConfigTypeDef
fn clone(&self) -> EXTI_ConfigTypeDef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EXTI_ConfigTypeDef
Auto Trait Implementations§
impl Freeze for EXTI_ConfigTypeDef
impl RefUnwindSafe for EXTI_ConfigTypeDef
impl Send for EXTI_ConfigTypeDef
impl Sync for EXTI_ConfigTypeDef
impl Unpin for EXTI_ConfigTypeDef
impl UnsafeUnpin for EXTI_ConfigTypeDef
impl UnwindSafe for EXTI_ConfigTypeDef
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