pub type BoxedSubscription<T> = Pin<Box<dyn Stream<Item = Option<Response<<T as GraphQLQuery>::ResponseData>>> + Send + Sync>>;
Expand description
Subscription GraphQL response, returned from an active stream.
Aliased Typeยง
struct BoxedSubscription<T> {}