pub trait FifoEntry: AsBytes + FromBytes { }
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] and [FromBytes].

Implementors§

source§

impl<O: AsBytes + FromBytes> FifoEntry for O