pub trait FifoEntry: IntoBytes + FromBytes + Immutable { }
Marker trait for types that can be read/written with a Fifo.
Fifo
An implementation is provided for all types that implement IntoBytes, FromBytes, and Immutable.
IntoBytes
FromBytes
Immutable
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.