#[repr(u8)]pub enum MmcCommand {
Switch = 6,
SendStatus = 13,
}Expand description
Command codes for MMC (JESD84-B51A, 6.10.4).
Only a limited subset which are useful for the CQHCI driver are included.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MmcCommand
impl Clone for MmcCommand
Source§fn clone(&self) -> MmcCommand
fn clone(&self) -> MmcCommand
Returns a duplicate 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 moreSource§impl Debug for MmcCommand
impl Debug for MmcCommand
Source§impl From<MmcCommand> for u8
impl From<MmcCommand> for u8
Source§fn from(value: MmcCommand) -> Self
fn from(value: MmcCommand) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MmcCommand
impl PartialEq for MmcCommand
impl Copy for MmcCommand
impl StructuralPartialEq for MmcCommand
Auto Trait Implementations§
impl Freeze for MmcCommand
impl RefUnwindSafe for MmcCommand
impl Send for MmcCommand
impl Sync for MmcCommand
impl Unpin for MmcCommand
impl UnsafeUnpin for MmcCommand
impl UnwindSafe for MmcCommand
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