pub struct DynChannels {
pub ch0: Option<Channel<CH0>>,
pub ch1: Option<Channel<CH1>>,
pub ch2: Option<Channel<CH2>>,
pub ch3: Option<Channel<CH3>>,
pub ch4: Option<Channel<CH4>>,
pub ch5: Option<Channel<CH5>>,
pub ch6: Option<Channel<CH6>>,
pub ch7: Option<Channel<CH7>>,
pub ch8: Option<Channel<CH8>>,
pub ch9: Option<Channel<CH9>>,
pub ch10: Option<Channel<CH10>>,
pub ch11: Option<Channel<CH11>>,
}Expand description
Set of DMA channels with runtime ownership.
Fields§
§ch0: Option<Channel<CH0>>DMA channel.
ch1: Option<Channel<CH1>>DMA channel.
ch2: Option<Channel<CH2>>DMA channel.
ch3: Option<Channel<CH3>>DMA channel.
ch4: Option<Channel<CH4>>DMA channel.
ch5: Option<Channel<CH5>>DMA channel.
ch6: Option<Channel<CH6>>DMA channel.
ch7: Option<Channel<CH7>>DMA channel.
ch8: Option<Channel<CH8>>DMA channel.
ch9: Option<Channel<CH9>>DMA channel.
ch10: Option<Channel<CH10>>DMA channel.
ch11: Option<Channel<CH11>>DMA channel.
Auto Trait Implementations§
impl Freeze for DynChannels
impl RefUnwindSafe for DynChannels
impl Send for DynChannels
impl Sync for DynChannels
impl Unpin for DynChannels
impl UnwindSafe for DynChannels
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