#[repr(u8)]pub enum EdmaStopAck {
EDMA_STOP_ACK_0 = 0,
EDMA_STOP_ACK_1 = 1,
}Variants§
EDMA_STOP_ACK_0 = 0
EDMA stop acknowledge is not asserted
EDMA_STOP_ACK_1 = 1
EDMA stop acknowledge is asserted (EDMA is in STOP mode).
Implementations§
Source§impl EdmaStopAck
impl EdmaStopAck
Trait Implementations§
Source§impl Clone for EdmaStopAck
impl Clone for EdmaStopAck
Source§fn clone(&self) -> EdmaStopAck
fn clone(&self) -> EdmaStopAck
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 EdmaStopAck
impl Debug for EdmaStopAck
Source§impl From<EdmaStopAck> for u8
impl From<EdmaStopAck> for u8
Source§fn from(val: EdmaStopAck) -> u8
fn from(val: EdmaStopAck) -> u8
Converts to this type from the input type.
Source§impl From<u8> for EdmaStopAck
impl From<u8> for EdmaStopAck
Source§fn from(val: u8) -> EdmaStopAck
fn from(val: u8) -> EdmaStopAck
Converts to this type from the input type.
Source§impl Ord for EdmaStopAck
impl Ord for EdmaStopAck
Source§fn cmp(&self, other: &EdmaStopAck) -> Ordering
fn cmp(&self, other: &EdmaStopAck) -> 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 EdmaStopAck
impl PartialEq for EdmaStopAck
Source§impl PartialOrd for EdmaStopAck
impl PartialOrd for EdmaStopAck
impl Copy for EdmaStopAck
impl Eq for EdmaStopAck
impl StructuralPartialEq for EdmaStopAck
Auto Trait Implementations§
impl Freeze for EdmaStopAck
impl RefUnwindSafe for EdmaStopAck
impl Send for EdmaStopAck
impl Sync for EdmaStopAck
impl Unpin for EdmaStopAck
impl UnwindSafe for EdmaStopAck
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