Trait synthizer::Stream

source ·
pub trait Stream: Read + CloseStream + Send + 'static { }
Expand description

Marker trait for types which implement non-seekable streams.

A blanket impl is provided for anything implementing the supertraits.

Implementors§

source§

impl<T: Read + CloseStream + Send + 'static> Stream for T