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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".