Type Definition dbcrossbarlib::tokio_glue::BoxStream[][src]

pub type BoxStream<T, E = Error> = BoxStream<'static, Result<T, E>>;
Expand description

A stream of values of type T, using our standard error type, and imposing enough restrictions to be able send streams between threads.

Trait Implementations

Consume futures from the stream, running parallelism futures at any given time. Read more