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

type BoxStream<T> = Box<dyn Stream<Item = T, Error = Error> + Send + 'static>;

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

impl<T: Send + Sized + 'static> ConsumeWithParallelism<T> for BoxStream<BoxFuture<T>>[src]