pub trait FifoEntry: AsBytes + FromBytes + NoCell { }
Expand description

Marker trait for types that can be read/written with a Fifo. Unsafe because not all types may be represented by arbitrary bit patterns.

An implementation is provided for all types that implement [AsBytes], [FromBytes], and [NoCell].

Implementors§

source§

impl<O: AsBytes + FromBytes + NoCell> FifoEntry for O