pub type DataStream<T> = Pin<Box<dyn Stream<Item = T> + Send>>;Expand description
Generic type describing a stream of types.
Specializations of this type are used in various layers of
drmemd. The drivers, for instance, provide a stream of Reading
types. The GraphQL layer converts it into a stream of replies.
Aliased Typeยง
pub struct DataStream<T> { /* private fields */ }