Struct artemis::client::ClientImpl[][src]

pub struct ClientImpl<M: Exchange> { /* fields omitted */ }

The internal implementation stored in the Client. This is exposed just in case you ever need raw access to the type outside of the wrapper.

Implementations

impl<M: Exchange> ClientImpl<M>[src]

pub async fn query<Q: GraphQLQuery>(
    self: &Arc<Self>,
    _query: Q,
    variables: Q::Variables
) -> Result<Response<Q::ResponseData>, QueryError>
[src]

pub async fn query_with_options<Q: GraphQLQuery>(
    self: &Arc<Self>,
    _query: Q,
    variables: Q::Variables,
    options: QueryOptions
) -> Result<Response<Q::ResponseData>, QueryError>
[src]

pub fn subscribe<Q: GraphQLQuery + 'static>(
    self: &Arc<Self>,
    query: Q,
    variables: Q::Variables
) -> Observable<Result<Response<<Q as GraphQLQuery>::ResponseData>, QueryError>, M>
[src]

pub fn subscribe_with_options<Q: GraphQLQuery + 'static>(
    self: &Arc<Self>,
    _query: Q,
    variables: Q::Variables,
    options: QueryOptions
) -> Observable<Result<Response<<Q as GraphQLQuery>::ResponseData>, QueryError>, M>
[src]

Trait Implementations

impl<M: Exchange> Send for ClientImpl<M>[src]

impl<M: Exchange> Sync for ClientImpl<M>[src]

Auto Trait Implementations

impl<M> !RefUnwindSafe for ClientImpl<M>

impl<M> Unpin for ClientImpl<M> where
    M: Unpin

impl<M> !UnwindSafe for ClientImpl<M>

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> Instrument for T[src]

impl<T> Instrument 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.