pub enum SdmmcPeripheral {
SdCard(Card),
Emmc(Emmc),
}
Expand description
Peripheral that can be operated over SDMMC
Variants§
Trait Implementations§
Source§impl Clone for SdmmcPeripheral
impl Clone for SdmmcPeripheral
Source§fn clone(&self) -> SdmmcPeripheral
fn clone(&self) -> SdmmcPeripheral
Returns a copy 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 SdmmcPeripheral
impl Debug for SdmmcPeripheral
impl Copy for SdmmcPeripheral
Auto Trait Implementations§
impl Freeze for SdmmcPeripheral
impl RefUnwindSafe for SdmmcPeripheral
impl Send for SdmmcPeripheral
impl Sync for SdmmcPeripheral
impl Unpin for SdmmcPeripheral
impl UnwindSafe for SdmmcPeripheral
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