[][src]Struct prima_bridge::GraphQLRequest

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

The GraphQLRequest is a struct that represent a GraphQL request to be done with the Bridge

Implementations

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

pub fn new<S: Serialize>(
    bridge: &'a Bridge,
    graphql_body: impl Into<GraphQLBody<S>>
) -> PrimaBridgeResult<Self>
[src]

creates a new GraphQLRequest

Trait Implementations

impl<'a> DeliverableRequest<'a> for GraphQLRequest<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for GraphQLRequest<'a>

impl<'a> Send for GraphQLRequest<'a>

impl<'a> Sync for GraphQLRequest<'a>

impl<'a> Unpin for GraphQLRequest<'a>

impl<'a> !UnwindSafe for GraphQLRequest<'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> FutureExt 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,