Streamable

Trait Streamable 

Source
pub trait Streamable:
    Facet<'static>
    + Send
    + 'static { }
Expand description

Marker trait for types that can be streamed.

Types must implement Facet<'static> for serialization and be Send.

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<T: Facet<'static> + Send + 'static> Streamable for T