#[repr(u8)]pub enum SdmactrlDmawidth {
BYTE_0 = 0,
BYTE_1 = 1,
HALF_WORD = 2,
_RESERVED_3 = 3,
}Variants§
BYTE_0 = 0
Byte
BYTE_1 = 1
Byte
HALF_WORD = 2
Halfword (16 bits) (this value ensures that two bytes are available in the FIFO)
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Clone for SdmactrlDmawidth
impl Clone for SdmactrlDmawidth
Source§fn clone(&self) -> SdmactrlDmawidth
fn clone(&self) -> SdmactrlDmawidth
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 SdmactrlDmawidth
impl Debug for SdmactrlDmawidth
Source§impl From<SdmactrlDmawidth> for u8
impl From<SdmactrlDmawidth> for u8
Source§fn from(val: SdmactrlDmawidth) -> u8
fn from(val: SdmactrlDmawidth) -> u8
Converts to this type from the input type.
Source§impl From<u8> for SdmactrlDmawidth
impl From<u8> for SdmactrlDmawidth
Source§fn from(val: u8) -> SdmactrlDmawidth
fn from(val: u8) -> SdmactrlDmawidth
Converts to this type from the input type.
Source§impl Ord for SdmactrlDmawidth
impl Ord for SdmactrlDmawidth
Source§fn cmp(&self, other: &SdmactrlDmawidth) -> Ordering
fn cmp(&self, other: &SdmactrlDmawidth) -> 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 SdmactrlDmawidth
impl PartialEq for SdmactrlDmawidth
Source§impl PartialOrd for SdmactrlDmawidth
impl PartialOrd for SdmactrlDmawidth
impl Copy for SdmactrlDmawidth
impl Eq for SdmactrlDmawidth
impl StructuralPartialEq for SdmactrlDmawidth
Auto Trait Implementations§
impl Freeze for SdmactrlDmawidth
impl RefUnwindSafe for SdmactrlDmawidth
impl Send for SdmactrlDmawidth
impl Sync for SdmactrlDmawidth
impl Unpin for SdmactrlDmawidth
impl UnwindSafe for SdmactrlDmawidth
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