[][src]Trait async_graphql::IntoQueryBuilder

pub trait IntoQueryBuilder: Sized {
#[must_use]    fn into_query_builder_opts<'life0, 'async_trait>(
        self,
        opts: &'life0 IntoQueryBuilderOpts
    ) -> Pin<Box<dyn Future<Output = Result<QueryBuilder, ParseRequestError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; #[must_use] fn into_query_builder<'async_trait>(
        self
    ) -> Pin<Box<dyn Future<Output = Result<QueryBuilder, ParseRequestError>> + Send + 'async_trait>>
    where
        Self: Send + 'async_trait
, { ... } }

Required methods

#[must_use]fn into_query_builder_opts<'life0, 'async_trait>(
    self,
    opts: &'life0 IntoQueryBuilderOpts
) -> Pin<Box<dyn Future<Output = Result<QueryBuilder, ParseRequestError>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Loading content...

Provided methods

#[must_use]fn into_query_builder<'async_trait>(
    self
) -> Pin<Box<dyn Future<Output = Result<QueryBuilder, ParseRequestError>> + Send + 'async_trait>> where
    Self: Send + 'async_trait, 

Loading content...

Implementations on Foreign Types

impl<CT, Body> IntoQueryBuilder for (Option<CT>, Body) where
    CT: AsRef<str> + Send,
    Body: AsyncRead + Send + Unpin + 'static, 
[src]

Loading content...

Implementors

impl IntoQueryBuilder for GQLRequest[src]

Loading content...