#[repr(C)]pub struct EXTI_HandleTypeDef {
pub Line: u32,
pub PendingCallback: Option<unsafe extern "C" fn()>,
}Expand description
@brief EXTI Handle structure definition
Fields§
§Line: u32< Exti line number
PendingCallback: Option<unsafe extern "C" fn()>< Exti pending callback
Trait Implementations§
Source§impl Clone for EXTI_HandleTypeDef
impl Clone for EXTI_HandleTypeDef
Source§fn clone(&self) -> EXTI_HandleTypeDef
fn clone(&self) -> EXTI_HandleTypeDef
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_HandleTypeDef
Auto Trait Implementations§
impl Freeze for EXTI_HandleTypeDef
impl RefUnwindSafe for EXTI_HandleTypeDef
impl Send for EXTI_HandleTypeDef
impl Sync for EXTI_HandleTypeDef
impl Unpin for EXTI_HandleTypeDef
impl UnsafeUnpin for EXTI_HandleTypeDef
impl UnwindSafe for EXTI_HandleTypeDef
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