Trait Channel

Source
pub trait Channel {
    // Required method
    fn select(w: &mut W) -> &mut W;
}
Expand description

Implemented for all types that represent DMA channels

This is an internal trait. End users neither need to implement it, nor use it directly.

Required Methods§

Source

fn select(w: &mut W) -> &mut W

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.

Implementors§