[][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: GraphQLQuery + 'static>(
    &self,
    _query: Q,
    variables: Q::Variables
) -> impl Future<Item = Response<Q::ResponseData>, Error = ClientError> + 'static
[src]

Perform a query.

Auto Trait Implementations

impl Send for Client

impl Sync for Client

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?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

The type returned in the event of a conversion error.