Enum stm32_metapac::rcc::vals::Usart16910sel
#[repr(u8)]pub enum Usart16910sel {
PCLK2 = 0,
PLL2_Q = 1,
PLL3_Q = 2,
HSI = 3,
CSI = 4,
LSE = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
}
Variants§
PCLK2 = 0
rcc_pclk2 selected as peripheral clock
PLL2_Q = 1
pll2_q selected as peripheral clock
PLL3_Q = 2
pll3_q selected as peripheral clock
HSI = 3
hsi_ker selected as peripheral clock
CSI = 4
csi_ker selected as peripheral clock
LSE = 5
LSE selected as peripheral clock
_RESERVED_6 = 6
_RESERVED_7 = 7
Implementations§
§impl Usart16910sel
impl Usart16910sel
pub const fn from_bits(val: u8) -> Usart16910sel
pub const fn to_bits(self) -> u8
Trait Implementations§
§impl Clone for Usart16910sel
impl Clone for Usart16910sel
§fn clone(&self) -> Usart16910sel
fn clone(&self) -> Usart16910sel
Returns a copy 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 more§impl From<Usart16910sel> for u8
impl From<Usart16910sel> for u8
§fn from(val: Usart16910sel) -> u8
fn from(val: Usart16910sel) -> u8
Converts to this type from the input type.
§impl From<u8> for Usart16910sel
impl From<u8> for Usart16910sel
§fn from(val: u8) -> Usart16910sel
fn from(val: u8) -> Usart16910sel
Converts to this type from the input type.
§impl Ord for Usart16910sel
impl Ord for Usart16910sel
§impl PartialEq for Usart16910sel
impl PartialEq for Usart16910sel
§fn eq(&self, other: &Usart16910sel) -> bool
fn eq(&self, other: &Usart16910sel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl PartialOrd for Usart16910sel
impl PartialOrd for Usart16910sel
§fn partial_cmp(&self, other: &Usart16910sel) -> Option<Ordering>
fn partial_cmp(&self, other: &Usart16910sel) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Usart16910sel
impl Eq for Usart16910sel
impl StructuralEq for Usart16910sel
impl StructuralPartialEq for Usart16910sel
Auto Trait Implementations§
impl RefUnwindSafe for Usart16910sel
impl Send for Usart16910sel
impl Sync for Usart16910sel
impl Unpin for Usart16910sel
impl UnwindSafe for Usart16910sel
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