Type Alias eventsource_client::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> { /* private fields */ }