[][src]Struct tsukuyomi_juniper::GraphQLResponse

pub struct GraphQLResponse<T, CtxT, S: ScalarValue = DefaultScalarValue> { /* fields omitted */ }

The type representing the result from the executing a GraphQL request.

Trait Implementations

impl<T: Debug, CtxT: Debug, S: Debug + ScalarValue> Debug for GraphQLResponse<T, CtxT, S>[src]

impl<T, CtxT, S> Responder for GraphQLResponse<T, CtxT, S> where
    T: Schema<S> + Send + 'static,
    CtxT: AsRef<T::Context> + Send + 'static,
    S: ScalarValue + Send + 'static,
    &'a S: ScalarRefValue<'a>, 
[src]

type Upgrade = NeverUpgrade

The type of asynchronous object to be ran after upgrading the protocol.

type Error = Error

The error type that will be thrown by this responder.

type Respond = GraphQLRespond

The asynchronous task converted from this responder.

Auto Trait Implementations

impl<T, CtxT, S> Send for GraphQLResponse<T, CtxT, S> where
    CtxT: Send,
    S: Send,
    T: Send

impl<T, CtxT, S> Sync for GraphQLResponse<T, CtxT, S> where
    CtxT: Sync,
    S: Sync,
    T: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T> Responder for T where
    T: IntoResponse
[src]

type Upgrade = NeverUpgrade

The type of asynchronous object to be ran after upgrading the protocol.

type Error = Never

The error type that will be thrown by this responder.

type Respond = IntoResponseRespond<T>

The asynchronous task converted from this responder.

impl<T> Erased for T