Trait Direction

Source
pub trait Direction: Bits<u8> {
    // Required methods
    fn new() -> Self;
    fn direction() -> DmaDirection;
}
Expand description

DMA direction.

Required Methods§

Source

fn new() -> Self

Creates a new instance of the type.

Source

fn direction() -> DmaDirection

Returns the DmaDirection of the type.

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§