[][src]Struct graphql_client_web::Client

pub struct Client { /* fields omitted */ }

The main interface to the library.

The workflow is the following:

  • create a client
  • (optionally) configure it
  • use it to perform queries with the [call] method

Methods

impl Client[src]

pub fn new<Endpoint>(endpoint: Endpoint) -> Client where
    Endpoint: Into<String>, 
[src]

Initialize a client. The endpoint parameter is the URI of the GraphQL API.

pub fn add_header(&mut self, name: &str, value: &str)[src]

Add a header to those sent with the requests. Can be used for things like authorization.

pub fn call<Q>(
    &self,
    _query: Q,
    variables: <Q as GraphQLQuery>::Variables
) -> impl Future<Item = Response<<Q as GraphQLQuery>::ResponseData>, Error = ClientError> + 'static where
    Q: 'static + GraphQLQuery
[src]

Perform a query.

Auto Trait Implementations

impl RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl UnwindSafe for Client

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, 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.