#[repr(u8)]pub enum Dstinc {
NO_INCREMENT = 0,
WIDTH_X_1 = 1,
WIDTH_X_2 = 2,
WIDTH_X_4 = 3,
}Variants§
NO_INCREMENT = 0
No increment. The destination address is not incremented for each transfer. This is the usual case when the destination is a peripheral device.
WIDTH_X_1 = 1
1 x width. The destination address is incremented by the amount specified by Width for each transfer. This is the usual case when the destination is memory.
WIDTH_X_2 = 2
2 x width. The destination address is incremented by 2 times the amount specified by Width for each transfer.
WIDTH_X_4 = 3
4 x width. The destination address is incremented by 4 times the amount specified by Width for each transfer.
Implementations§
Trait Implementations§
Source§impl Ord for Dstinc
impl Ord for Dstinc
Source§impl PartialOrd for Dstinc
impl PartialOrd for Dstinc
impl Copy for Dstinc
impl Eq for Dstinc
impl StructuralPartialEq for Dstinc
Auto Trait Implementations§
impl Freeze for Dstinc
impl RefUnwindSafe for Dstinc
impl Send for Dstinc
impl Sync for Dstinc
impl Unpin for Dstinc
impl UnwindSafe for Dstinc
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