pub type BoxRunStream<E, T = ()> = Pin<Box<dyn Stream<Item = Result<StreamPacket<T>, E>> + Send>>;
Expand description

Type alias for a pinned, boxed stream of stream packets with a custom error type.

Aliased Type§

struct BoxRunStream<E, T = ()> { /* private fields */ }