pub struct Channels {
pub ch0: Channel<CH0>,
pub ch1: Channel<CH1>,
pub ch2: Channel<CH2>,
pub ch3: Channel<CH3>,
pub ch4: Channel<CH4>,
pub ch5: Channel<CH5>,
pub ch6: Channel<CH6>,
pub ch7: Channel<CH7>,
pub ch8: Channel<CH8>,
pub ch9: Channel<CH9>,
pub ch10: Channel<CH10>,
pub ch11: Channel<CH11>,
}Expand description
Set of DMA channels.
Fields§
§ch0: Channel<CH0>DMA channel.
ch1: Channel<CH1>DMA channel.
ch2: Channel<CH2>DMA channel.
ch3: Channel<CH3>DMA channel.
ch4: Channel<CH4>DMA channel.
ch5: Channel<CH5>DMA channel.
ch6: Channel<CH6>DMA channel.
ch7: Channel<CH7>DMA channel.
ch8: Channel<CH8>DMA channel.
ch9: Channel<CH9>DMA channel.
ch10: Channel<CH10>DMA channel.
ch11: Channel<CH11>DMA channel.
Auto Trait Implementations§
impl Freeze for Channels
impl RefUnwindSafe for Channels
impl Send for Channels
impl Sync for Channels
impl Unpin for Channels
impl UnwindSafe for Channels
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
Source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more