Enum Uartsel
#[repr(u8)]pub enum Uartsel {
PCLK1 = 0,
SYS = 1,
HSI = 2,
LSE = 3,
}Variants§
PCLK1 = 0
PCLK1 clock selected as UART clock.
SYS = 1
System clock (SYSCLK) selected as UART clock.
HSI = 2
HSI16 clock selected as UART clock.
LSE = 3
LSE clock selected as UART clock.
Implementations§
Trait Implementations§
§impl Ord for Uartsel
impl Ord for Uartsel
§impl PartialOrd for Uartsel
impl PartialOrd for Uartsel
impl Copy for Uartsel
impl Eq for Uartsel
impl StructuralPartialEq for Uartsel
Auto Trait Implementations§
impl Freeze for Uartsel
impl RefUnwindSafe for Uartsel
impl Send for Uartsel
impl Sync for Uartsel
impl Unpin for Uartsel
impl UnwindSafe for Uartsel
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