pub enum DmaDataSize {
Byte = 0,
HalfWord = 1,
Word = 2,
}
Expand description
Size of data transfered during a dma stream request
Variants§
Trait Implementations§
Source§impl Clone for DmaDataSize
impl Clone for DmaDataSize
Source§fn clone(&self) -> DmaDataSize
fn clone(&self) -> DmaDataSize
Returns a copy 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 DmaDataSize
impl Debug for DmaDataSize
Source§impl PartialEq for DmaDataSize
impl PartialEq for DmaDataSize
impl Copy for DmaDataSize
impl Eq for DmaDataSize
impl StructuralPartialEq for DmaDataSize
Auto Trait Implementations§
impl Freeze for DmaDataSize
impl RefUnwindSafe for DmaDataSize
impl Send for DmaDataSize
impl Sync for DmaDataSize
impl Unpin for DmaDataSize
impl UnwindSafe for DmaDataSize
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