pub enum DmaChannel {
Channel0 = 0,
Channel1 = 1,
Channel2 = 2,
Channel3 = 3,
Channel4 = 4,
Channel5 = 5,
Channel6 = 6,
Channel7 = 7,
}
Expand description
Possible Channel of a DMA Stream.
Variants§
Channel0 = 0
Channel1 = 1
Channel2 = 2
Channel3 = 3
Channel4 = 4
Channel5 = 5
Channel6 = 6
Channel7 = 7
Trait Implementations§
Source§impl Clone for DmaChannel
impl Clone for DmaChannel
Source§fn clone(&self) -> DmaChannel
fn clone(&self) -> DmaChannel
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 DmaChannel
impl Debug for DmaChannel
Source§impl PartialEq for DmaChannel
impl PartialEq for DmaChannel
impl Copy for DmaChannel
impl Eq for DmaChannel
impl StructuralPartialEq for DmaChannel
Auto Trait Implementations§
impl Freeze for DmaChannel
impl RefUnwindSafe for DmaChannel
impl Send for DmaChannel
impl Sync for DmaChannel
impl Unpin for DmaChannel
impl UnwindSafe for DmaChannel
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