pub enum ClockSource {
PCLK = 0,
LSI = 1,
HSI16 = 2,
LSE = 3,
}Expand description
Clock sources available for timers
Variants§
PCLK = 0
Use PCLK as clock source
LSI = 1
Use LSI as clock source
HSI16 = 2
Use HSI16 as clock source
LSE = 3
Use LSE as clock source
Auto Trait Implementations§
impl Freeze for ClockSource
impl RefUnwindSafe for ClockSource
impl Send for ClockSource
impl Sync for ClockSource
impl Unpin for ClockSource
impl UnwindSafe for ClockSource
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