Enum stm32_metapac::gpio::vals::Mode
#[repr(u8)]pub enum Mode {
INPUT = 0,
OUTPUT10MHZ = 1,
OUTPUT2MHZ = 2,
OUTPUT50MHZ = 3,
}
Variants§
INPUT = 0
Input mode (reset state)
OUTPUT10MHZ = 1
Output mode 10 MHz
OUTPUT2MHZ = 2
Output mode 2 MHz
OUTPUT50MHZ = 3
Output mode 50 MHz
Implementations§
Trait Implementations§
§impl Ord for Mode
impl Ord for Mode
§impl PartialOrd for Mode
impl PartialOrd for Mode
§fn partial_cmp(&self, other: &Mode) -> Option<Ordering>
fn partial_cmp(&self, other: &Mode) -> 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 Mode
impl Eq for Mode
impl StructuralPartialEq for Mode
Auto Trait Implementations§
impl Freeze for Mode
impl RefUnwindSafe for Mode
impl Send for Mode
impl Sync for Mode
impl Unpin for Mode
impl UnwindSafe for Mode
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