Type Alias BoxStream

Source
pub type BoxStream<'a, T> = Pin<Box<dyn Stream<Item = T> + Send + 'a>>;
Expand description

Stream that is Send unless targeting WASM

Aliased Typeยง

#[repr(transparent)]
pub struct BoxStream<'a, T> { /* private fields */ }