#[repr(u8)]pub enum Abortoncmden {
Val0 = 0,
Val1 = 1,
}Variants§
Val0 = 0
When command abort request is received during CMD instruction, command sequence waits for the CMD instruction to complete instead of aborting immediately.
Val1 = 1
When command abort request is received during CMD instruction, command sequence is aborted immediately.
Implementations§
Source§impl Abortoncmden
impl Abortoncmden
Trait Implementations§
Source§impl Clone for Abortoncmden
impl Clone for Abortoncmden
Source§fn clone(&self) -> Abortoncmden
fn clone(&self) -> Abortoncmden
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 Abortoncmden
impl Debug for Abortoncmden
Source§impl From<Abortoncmden> for u8
impl From<Abortoncmden> for u8
Source§fn from(val: Abortoncmden) -> u8
fn from(val: Abortoncmden) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Abortoncmden
impl From<u8> for Abortoncmden
Source§fn from(val: u8) -> Abortoncmden
fn from(val: u8) -> Abortoncmden
Converts to this type from the input type.
Source§impl Ord for Abortoncmden
impl Ord for Abortoncmden
Source§fn cmp(&self, other: &Abortoncmden) -> Ordering
fn cmp(&self, other: &Abortoncmden) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Abortoncmden
impl PartialEq for Abortoncmden
Source§impl PartialOrd for Abortoncmden
impl PartialOrd for Abortoncmden
impl Copy for Abortoncmden
impl Eq for Abortoncmden
impl StructuralPartialEq for Abortoncmden
Auto Trait Implementations§
impl Freeze for Abortoncmden
impl RefUnwindSafe for Abortoncmden
impl Send for Abortoncmden
impl Sync for Abortoncmden
impl Unpin for Abortoncmden
impl UnwindSafe for Abortoncmden
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