Trait 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