Enum stm32wlxx_hal::gpio::Speed
source · #[repr(u8)]pub enum Speed {
Low = 0,
Medium = 1,
Fast = 2,
High = 3,
}
Expand description
GPIO speeds.
Refer to the device datasheet for the frequency specifications and the power supply and load conditions for each speed.
Variants§
Trait Implementations§
source§impl Ord for Speed
impl Ord for Speed
source§impl PartialEq for Speed
impl PartialEq for Speed
source§impl PartialOrd for Speed
impl PartialOrd for Speed
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 Speed
impl Eq for Speed
impl StructuralEq for Speed
impl StructuralPartialEq for Speed
Auto Trait Implementations§
impl RefUnwindSafe for Speed
impl Send for Speed
impl Sync for Speed
impl Unpin for Speed
impl UnwindSafe for Speed
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