pub unsafe trait ReadTarget {
    type Word: Word;
    fn as_read_buffer(&self) -> (*const Self::Word, usize) { ... }
}
Expand description

Trait for Deref targets used by the blanket DmaReadBuffer impl.

This trait exists solely to work around https://github.com/rust-lang/rust/issues/20400.

Safety

Associated Types

Provided methods

Implementations on Foreign Types

Implementors