pub enum ResponseType {
None,
R1,
R1b,
R2,
R3,
R4,
R5,
R6,
R7,
}Expand description
SD/MMC response types
Variants§
None
No response
R1
R1: Standard response (48-bit)
R1b
R1b: R1 with busy signal
R2
R2: CID/CSD register (136-bit)
R3
R3: OCR register (48-bit)
R4
R4: SDIO OCR (48-bit)
R5
R5: SDIO RW (48-bit)
R6
R6: Published RCA (48-bit, SD)
R7
R7: Card interface condition (48-bit)
Trait Implementations§
Source§impl Clone for ResponseType
impl Clone for ResponseType
Source§fn clone(&self) -> ResponseType
fn clone(&self) -> ResponseType
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 ResponseType
impl Debug for ResponseType
Source§impl PartialEq for ResponseType
impl PartialEq for ResponseType
Source§fn eq(&self, other: &ResponseType) -> bool
fn eq(&self, other: &ResponseType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ResponseType
impl Eq for ResponseType
impl StructuralPartialEq for ResponseType
Auto Trait Implementations§
impl Freeze for ResponseType
impl RefUnwindSafe for ResponseType
impl Send for ResponseType
impl Sync for ResponseType
impl Unpin for ResponseType
impl UnsafeUnpin for ResponseType
impl UnwindSafe for ResponseType
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