pub unsafe trait Word { }
Expand description

Trait for DMA word types used by the blanket DMA buffer impls.

Safety

Types that implement this trait must be valid for every possible byte pattern. This is to ensure that, whatever DMA writes into the buffer, we won’t get UB due to invalid values.

Implementations on Foreign Types

Implementors