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
sourceimpl From<BatchResponse> for GraphQLResponse
impl From<BatchResponse> for GraphQLResponse
sourcefn from(resp: BatchResponse) -> Self
fn from(resp: BatchResponse) -> Self
Converts to this type from the input type.
sourceimpl From<Response> for GraphQLResponse
impl From<Response> for GraphQLResponse
sourceimpl IntoResponse for GraphQLResponse
impl IntoResponse for GraphQLResponse
sourcefn into_response(self) -> Response<BoxBody>
fn into_response(self) -> Response<BoxBody>
Create a response.
Auto Trait Implementations
impl !RefUnwindSafe for GraphQLResponse
impl Send for GraphQLResponse
impl Sync for GraphQLResponse
impl Unpin for GraphQLResponse
impl !UnwindSafe for GraphQLResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more