pub struct GraphQLResponse(pub BatchResponse);
Expand description
Responder for a GraphQL response.
This contains a batch response, but since regular responses are a type of batch response it works for both.
Tuple Fields§
§0: BatchResponse
Trait Implementations§
Source§impl From<BatchResponse> for GraphQLResponse
impl From<BatchResponse> for GraphQLResponse
Source§fn from(resp: BatchResponse) -> Self
fn from(resp: BatchResponse) -> Self
Converts to this type from the input type.
Source§impl From<GraphQLResponse> for Response
impl From<GraphQLResponse> for Response
Source§fn from(gr: GraphQLResponse) -> Self
fn from(gr: GraphQLResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !Freeze for GraphQLResponse
impl !RefUnwindSafe for GraphQLResponse
impl Send for GraphQLResponse
impl Sync for GraphQLResponse
impl Unpin for GraphQLResponse
impl !UnwindSafe for GraphQLResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more