[][src]Struct apollo_client::Client

pub struct Client<'a> { /* fields omitted */ }

Represents the apollo client.

Methods

impl<'a> Client<'a>[src]

pub fn with_config(client_config: &'a ClientConfig<'a>) -> Self[src]

New with the configuration of apollo and api parameters.

pub async fn request<'_, T: FromResponses<Err = ApolloClientError>>(
    &'_ self
) -> ApolloClientResult<T>
[src]

Request apollo config api, and return response of your favorite type.

pub async fn listen_once<'_>(&'_ mut self) -> ApolloClientResult<()>[src]

Request apollo notification api just once.

pub async fn listen_and_request<'_, T: FromResponses<Err = ApolloClientError>>(
    &'_ mut self
) -> ApolloClientResult<T>
[src]

Loop and request apollo notification api, if there is a change of the namespaces, return the response of your favorite type, or ApolloClientError if there is something wrong.

Auto Trait Implementations

impl<'a> RefUnwindSafe for Client<'a>

impl<'a> Send for Client<'a>

impl<'a> Sync for Client<'a>

impl<'a> Unpin for Client<'a>

impl<'a> UnwindSafe for Client<'a>

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.