pub type BoxStream<T> = Pin<Box<dyn Stream<Item = T> + Send + Sync>>;
Represents a Pin’d Send + Sync stream, returned by Client’s stream method.
Pin
Send
Sync
Client
struct BoxStream<T> {}