#[repr(u8)]pub enum TuningMode {
Standard = 0,
Hs200 = 1,
Hs400 = 2,
}Expand description
Represents the tuning speed mode for the SD/MMC device.
Variants§
Standard = 0
Represents a standard tuning mode.
Hs200 = 1
Represents a high-speed HS200 tuning mode.
Hs400 = 2
Represents a high-speed HS400 tuning mode.
Trait Implementations§
Source§impl Clone for TuningMode
impl Clone for TuningMode
Source§fn clone(&self) -> TuningMode
fn clone(&self) -> TuningMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TuningMode
Source§impl Debug for TuningMode
impl Debug for TuningMode
impl Eq for TuningMode
Source§impl PartialEq for TuningMode
impl PartialEq for TuningMode
impl StructuralPartialEq for TuningMode
Auto Trait Implementations§
impl Freeze for TuningMode
impl RefUnwindSafe for TuningMode
impl Send for TuningMode
impl Sync for TuningMode
impl Unpin for TuningMode
impl UnsafeUnpin for TuningMode
impl UnwindSafe for TuningMode
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