pub trait Channel:
SealedChannel
+ PeripheralType
+ Into<AnyChannel>
+ 'static {
// Required methods
fn index(&self) -> usize;
fn interrupt(&self) -> Interrupt;
}Expand description
Marker trait implemented by HAL peripheral tokens that map to a DMA0 channel backed by one EDMA_0_TCD0 TCD slot.
This trait is sealed and cannot be implemented outside this crate.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.