pub enum GraphQLBatchResponse<'a, S = DefaultScalarValue>where
    S: ScalarValue,
{ Single(GraphQLResponse<'a, S>), Batch(Vec<GraphQLResponse<'a, S>>), }
Expand description

Simple wrapper around the result (GraphQLResponse) from executing a GraphQLBatchRequest

This struct implements Serialize, so you can simply serialize this to JSON and send it over the wire. use the is_ok to determine wheter to send a 200 or 400 HTTP status code.

Variants§

§

Single(GraphQLResponse<'a, S>)

Result of a single operation in a GraphQL request.

§

Batch(Vec<GraphQLResponse<'a, S>>)

Result of a batch operation in a GraphQL request.

Implementations§

source§

impl<'a, S> GraphQLBatchResponse<'a, S>where
    S: ScalarValue,

source

pub fn is_ok(&self) -> bool

Returns if all the GraphQLResponse in this operation are ok, you can use it to determine wheter to send a 200 or 400 HTTP status code.

Trait Implementations§

source§

impl<'a, S> Serialize for GraphQLBatchResponse<'a, S>where
    S: ScalarValue + Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
    __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<'a, S> RefUnwindSafe for GraphQLBatchResponse<'a, S>where
    S: RefUnwindSafe,

§

impl<'a, S> Send for GraphQLBatchResponse<'a, S>where
    S: Send,

§

impl<'a, S> Sync for GraphQLBatchResponse<'a, S>where
    S: Sync,

§

impl<'a, S> Unpin for GraphQLBatchResponse<'a, S>where
    S: Unpin,

§

impl<'a, S> UnwindSafe for GraphQLBatchResponse<'a, S>where
    S: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere
    T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere
    U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V