#[repr(u8)]pub enum ReadWrite {
Read = 0,
Write = 1,
}
Expand description
Represents the R/W
(read/write flag) field of the Argument.
Variants§
Read = 0
The command is used to read data from a card address.
Write = 1
The command is used to write data to a card address.
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