[][src]Struct async_graphql::SubscriptionStream

pub struct SubscriptionStream<Query, Mutation, Subscription, T: SubscriptionTransport> { /* fields omitted */ }

Trait Implementations

impl<Query, Mutation, Subscription, T> Stream for SubscriptionStream<Query, Mutation, Subscription, T> where
    Query: ObjectType + Send + Sync + 'static,
    Mutation: ObjectType + Send + Sync + 'static,
    Subscription: SubscriptionType + Send + Sync + 'static,
    T: SubscriptionTransport
[src]

type Item = Bytes

Values yielded by the stream.

Auto Trait Implementations

impl<Query, Mutation, Subscription, T> !RefUnwindSafe for SubscriptionStream<Query, Mutation, Subscription, T>

impl<Query, Mutation, Subscription, T> Send for SubscriptionStream<Query, Mutation, Subscription, T> where
    Mutation: Send + Sync,
    Query: Send + Sync,
    Subscription: Send + Sync

impl<Query, Mutation, Subscription, T> !Sync for SubscriptionStream<Query, Mutation, Subscription, T>

impl<Query, Mutation, Subscription, T> Unpin for SubscriptionStream<Query, Mutation, Subscription, T>

impl<Query, Mutation, Subscription, T> !UnwindSafe for SubscriptionStream<Query, Mutation, Subscription, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> StreamExt for T where
    T: Stream + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,