FutStream

Trait FutStream 

Source
pub trait FutStream<T>: Stream<Item = (NanoTime, T)> + Send { }
Expand description

A convenience alias for futures::Stream with items of type (NanoTime, T). used by StreamOperators::consume_async.

Implementors§

Source§

impl<STRM, T> FutStream<T> for STRM
where STRM: Stream<Item = (NanoTime, T)> + Send,