Type Alias BoxStream

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

Represents a Pin’d Send + Sync stream, returned by Client’s stream method.

Aliased Type§

struct BoxStream<T> {}