Enum stm32_metapac::rcc::vals::Usart234578sel
#[repr(u8)]pub enum Usart234578sel {
PCLK1 = 0,
PLL2_Q = 1,
PLL3_Q = 2,
HSI = 3,
CSI = 4,
LSE = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
}
Variants§
PCLK1 = 0
rcc_pclk1 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 Usart234578sel
impl Usart234578sel
pub const fn from_bits(val: u8) -> Usart234578sel
pub const fn to_bits(self) -> u8
Trait Implementations§
§impl Clone for Usart234578sel
impl Clone for Usart234578sel
§fn clone(&self) -> Usart234578sel
fn clone(&self) -> Usart234578sel
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<Usart234578sel> for u8
impl From<Usart234578sel> for u8
§fn from(val: Usart234578sel) -> u8
fn from(val: Usart234578sel) -> u8
Converts to this type from the input type.
§impl From<u8> for Usart234578sel
impl From<u8> for Usart234578sel
§fn from(val: u8) -> Usart234578sel
fn from(val: u8) -> Usart234578sel
Converts to this type from the input type.
§impl Ord for Usart234578sel
impl Ord for Usart234578sel
§impl PartialEq for Usart234578sel
impl PartialEq for Usart234578sel
§fn eq(&self, other: &Usart234578sel) -> bool
fn eq(&self, other: &Usart234578sel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl PartialOrd for Usart234578sel
impl PartialOrd for Usart234578sel
§fn partial_cmp(&self, other: &Usart234578sel) -> Option<Ordering>
fn partial_cmp(&self, other: &Usart234578sel) -> 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 Usart234578sel
impl Eq for Usart234578sel
impl StructuralEq for Usart234578sel
impl StructuralPartialEq for Usart234578sel
Auto Trait Implementations§
impl RefUnwindSafe for Usart234578sel
impl Send for Usart234578sel
impl Sync for Usart234578sel
impl Unpin for Usart234578sel
impl UnwindSafe for Usart234578sel
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