#[repr(u8)]pub enum DcmdResponseType {
NoResponse = 0,
R1 = 2,
R1B = 3,
}Variants§
NoResponse = 0
No response is expected for the command
R1 = 2
Normal response expected
R1B = 3
Like R1, but with an optional busy signal transmitted on the DATA line.
Implementations§
Trait Implementations§
Source§impl Clone for DcmdResponseType
impl Clone for DcmdResponseType
Source§fn clone(&self) -> DcmdResponseType
fn clone(&self) -> DcmdResponseType
Returns a duplicate 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 DcmdResponseType
impl Debug for DcmdResponseType
Source§impl From<DcmdResponseType> for u8
impl From<DcmdResponseType> for u8
Source§fn from(value: DcmdResponseType) -> Self
fn from(value: DcmdResponseType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DcmdResponseType
impl PartialEq for DcmdResponseType
impl Copy for DcmdResponseType
impl Eq for DcmdResponseType
impl StructuralPartialEq for DcmdResponseType
Auto Trait Implementations§
impl Freeze for DcmdResponseType
impl RefUnwindSafe for DcmdResponseType
impl Send for DcmdResponseType
impl Sync for DcmdResponseType
impl Unpin for DcmdResponseType
impl UnsafeUnpin for DcmdResponseType
impl UnwindSafe for DcmdResponseType
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