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<Response> for GraphQLResponse
impl From<Response> for GraphQLResponse
source§impl IntoResponse for GraphQLResponse
impl IntoResponse for GraphQLResponse
source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
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