#[repr(u8)]pub enum DsiPllInput {
Div1 = 1,
Div2 = 2,
Div3 = 3,
Div4 = 4,
Div5 = 5,
Div6 = 6,
Div7 = 7,
}Expand description
DSI PLL Input Divisor of HSE clock
Variants§
Div1 = 1
HSE
Div2 = 2
HSE / 2
Div3 = 3
HSE / 3
Div4 = 4
HSE / 4
Div5 = 5
HSE / 5
Div6 = 6
HSE / 6
Div7 = 7
HSE / 7
Trait Implementations§
Source§impl Clone for DsiPllInput
impl Clone for DsiPllInput
Source§fn clone(&self) -> DsiPllInput
fn clone(&self) -> DsiPllInput
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 moreimpl Copy for DsiPllInput
Auto Trait Implementations§
impl Freeze for DsiPllInput
impl RefUnwindSafe for DsiPllInput
impl Send for DsiPllInput
impl Sync for DsiPllInput
impl Unpin for DsiPllInput
impl UnwindSafe for DsiPllInput
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