#[repr(u8)]pub enum DMAWidth {
Width8Bit = 0,
Width16Bit = 1,
Width32Bit = 2,
}
Variants§
Width8Bit = 0
DMA is acting on bytes
Width16Bit = 1
DMA is acting on halfwords
Width32Bit = 2
DMA is acting on words
Trait Implementations§
impl Copy for DMAWidth
impl StructuralPartialEq for DMAWidth
Auto Trait Implementations§
impl Freeze for DMAWidth
impl RefUnwindSafe for DMAWidth
impl Send for DMAWidth
impl Sync for DMAWidth
impl Unpin for DMAWidth
impl UnwindSafe for DMAWidth
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