Enum stm32_metapac::rcc::vals::Lsedrv
#[repr(u8)]pub enum Lsedrv {
LOW = 0,
MEDIUMLOW = 1,
MEDIUMHIGH = 2,
HIGH = 3,
}
Variants§
LOW = 0
Low driving capability
MEDIUMLOW = 1
Medium low driving capability
MEDIUMHIGH = 2
Medium high driving capability
HIGH = 3
High driving capability
Implementations§
Trait Implementations§
§impl Ord for Lsedrv
impl Ord for Lsedrv
§impl PartialOrd for Lsedrv
impl PartialOrd for Lsedrv
§fn partial_cmp(&self, other: &Lsedrv) -> Option<Ordering>
fn partial_cmp(&self, other: &Lsedrv) -> 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 Lsedrv
impl Eq for Lsedrv
impl StructuralEq for Lsedrv
impl StructuralPartialEq for Lsedrv
Auto Trait Implementations§
impl RefUnwindSafe for Lsedrv
impl Send for Lsedrv
impl Sync for Lsedrv
impl Unpin for Lsedrv
impl UnwindSafe for Lsedrv
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