#[repr(u8)]pub enum ReadWrite {
Write = 0,
Read = 1,
}
Expand description
Represents the R/W
(read/write flag) field of the Argument.
Variants§
Write = 0
The command is used to write a single data block from the card.
Read = 1
The command is used to read a single data block from the card.
Implementations§
Trait Implementations§
impl Copy for ReadWrite
impl Eq for ReadWrite
impl StructuralPartialEq for ReadWrite
Auto Trait Implementations§
impl Freeze for ReadWrite
impl RefUnwindSafe for ReadWrite
impl Send for ReadWrite
impl Sync for ReadWrite
impl Unpin for ReadWrite
impl UnwindSafe for ReadWrite
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