Type Definition futures::stream::BoxStream [] [src]

type BoxStream<T, E> = Box<Stream<Item=T, Error=E> + Send>;

A type alias for Box<Stream + Send>