pub enum DataCommandDirection {
Read,
Write,
}Expand description
Direction of a generic SD/MMC data command.
Variants§
Trait Implementations§
Source§impl Clone for DataCommandDirection
impl Clone for DataCommandDirection
Source§fn clone(&self) -> DataCommandDirection
fn clone(&self) -> DataCommandDirection
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 moreSource§impl Debug for DataCommandDirection
impl Debug for DataCommandDirection
Source§impl PartialEq for DataCommandDirection
impl PartialEq for DataCommandDirection
Source§fn eq(&self, other: &DataCommandDirection) -> bool
fn eq(&self, other: &DataCommandDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DataCommandDirection
impl Eq for DataCommandDirection
impl StructuralPartialEq for DataCommandDirection
Auto Trait Implementations§
impl Freeze for DataCommandDirection
impl RefUnwindSafe for DataCommandDirection
impl Send for DataCommandDirection
impl Sync for DataCommandDirection
impl Unpin for DataCommandDirection
impl UnsafeUnpin for DataCommandDirection
impl UnwindSafe for DataCommandDirection
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