[][src]Trait async_graphql::http::IntoQueryBuilder

pub trait IntoQueryBuilder {
    fn into_query_builder<'life0, 'async_trait, Query, Mutation, Subscription>(
        self,
        schema: &'life0 Schema<Query, Mutation, Subscription>
    ) -> Pin<Box<dyn Future<Output = Result<QueryBuilder<Query, Mutation, Subscription>>> + Send + 'async_trait>>
    where
        Query: ObjectType + Send + Sync + 'static,
        Mutation: ObjectType + Send + Sync + 'static,
        Subscription: SubscriptionType + Send + Sync + 'static,
        Query: 'async_trait,
        Mutation: 'async_trait,
        Subscription: 'async_trait,
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

fn into_query_builder<'life0, 'async_trait, Query, Mutation, Subscription>(
    self,
    schema: &'life0 Schema<Query, Mutation, Subscription>
) -> Pin<Box<dyn Future<Output = Result<QueryBuilder<Query, Mutation, Subscription>>> + Send + 'async_trait>> where
    Query: ObjectType + Send + Sync + 'static,
    Mutation: ObjectType + Send + Sync + 'static,
    Subscription: SubscriptionType + Send + Sync + 'static,
    Query: 'async_trait,
    Mutation: 'async_trait,
    Subscription: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl IntoQueryBuilder for GQLRequest[src]

impl<R: GQLHttpRequest + Send + Sync> IntoQueryBuilder for R[src]

Loading content...