Struct async_graphql_axum::GraphQLResponse
source · 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<BoxBody>
fn into_response(self) -> Response<BoxBody>
Create a response.