#[repr(C)]pub struct WWDG_InitTypeDef {
pub Prescaler: u32,
pub Window: u32,
pub Counter: u32,
pub EWIMode: u32,
}
Expand description
@brief WWDG Init structure definition
Fields§
§Prescaler: u32
< Specifies the prescaler value of the WWDG. This parameter can be a value of @ref WWDG_Prescaler
Window: u32
< Specifies the WWDG window value to be compared to the downcounter. This parameter must be a number Min_Data = 0x40 and Max_Data = 0x7F
Counter: u32
< Specifies the WWDG free-running downcounter value. This parameter must be a number between Min_Data = 0x40 and Max_Data = 0x7F
EWIMode: u32
< Specifies if WWDG Early Wakeup Interupt is enable or not. This parameter can be a value of @ref WWDG_EWI_Mode
Trait Implementations§
Source§impl Clone for WWDG_InitTypeDef
impl Clone for WWDG_InitTypeDef
Source§fn clone(&self) -> WWDG_InitTypeDef
fn clone(&self) -> WWDG_InitTypeDef
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WWDG_InitTypeDef
impl Debug for WWDG_InitTypeDef
impl Copy for WWDG_InitTypeDef
Auto Trait Implementations§
impl Freeze for WWDG_InitTypeDef
impl RefUnwindSafe for WWDG_InitTypeDef
impl Send for WWDG_InitTypeDef
impl Sync for WWDG_InitTypeDef
impl Unpin for WWDG_InitTypeDef
impl UnwindSafe for WWDG_InitTypeDef
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