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.

Object Safety§

This trait is not object safe.

Implementors§