[−][src]Struct async_graphql::http::GQLRequest
GraphQL Request object
Fields
query: String
Query source
operation_name: Option<String>
Operation name for this query
variables: Option<Value>
Variables for this query
Methods
impl GQLRequest
[src]
pub async fn execute<'_, Query, Mutation, Subscription>(
__arg0: Self,
schema: &'_ Schema<Query, Mutation, Subscription>
) -> GQLResponse where
Query: ObjectType + Send + Sync + 'static,
Mutation: ObjectType + Send + Sync + 'static,
Subscription: SubscriptionType + Send + Sync + 'static,
[src]
__arg0: Self,
schema: &'_ Schema<Query, Mutation, Subscription>
) -> GQLResponse where
Query: ObjectType + Send + Sync + 'static,
Mutation: ObjectType + Send + Sync + 'static,
Subscription: SubscriptionType + Send + Sync + 'static,
Execute the query and return the GQLResponse
.
pub fn prepare<'a, Query, Mutation, Subscription>(
&'a mut self,
schema: &'a Schema<Query, Mutation, Subscription>
) -> Result<PreparedQuery<'a, Query, Mutation>> where
Query: ObjectType + Send + Sync + 'static,
Mutation: ObjectType + Send + Sync + 'static,
Subscription: SubscriptionType + Send + Sync + 'static,
[src]
&'a mut self,
schema: &'a Schema<Query, Mutation, Subscription>
) -> Result<PreparedQuery<'a, Query, Mutation>> where
Query: ObjectType + Send + Sync + 'static,
Mutation: ObjectType + Send + Sync + 'static,
Subscription: SubscriptionType + Send + Sync + 'static,
Prepare a query and return a PreparedQuery
object that gets some information about the query.
Trait Implementations
impl Clone for GQLRequest
[src]
fn clone(&self) -> GQLRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for GQLRequest
[src]
impl<'de> Deserialize<'de> for GQLRequest
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl PartialEq<GQLRequest> for GQLRequest
[src]
fn eq(&self, other: &GQLRequest) -> bool
[src]
fn ne(&self, other: &GQLRequest) -> bool
[src]
impl StructuralPartialEq for GQLRequest
[src]
Auto Trait Implementations
impl RefUnwindSafe for GQLRequest
impl Send for GQLRequest
impl Sync for GQLRequest
impl Unpin for GQLRequest
impl UnwindSafe for GQLRequest
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,