Trait fuchsia_async::FifoEntry

source ·
pub trait FifoEntry: IntoBytes + FromBytes + Immutable { }
Expand description

Marker trait for types that can be read/written with a Fifo.

An implementation is provided for all types that implement [IntoBytes], [FromBytes], and [Immutable].

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IntoBytes + FromBytes + Immutable> FifoEntry for O