fuchsia_async

Trait 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].

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

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