Struct async_graphql_poem::GraphQLResponse 
source · pub struct GraphQLResponse(pub Response);Expand description
Response for async_graphql::Request.
Tuple Fields§
§0: ResponseTrait Implementations§
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
Consume itself and return 
Response.source§fn with_header<K, V>(self, key: K, value: V) -> WithHeader<Self>
 
fn with_header<K, V>(self, key: K, value: V) -> WithHeader<Self>
Wrap an 
impl IntoResponse to add a header. Read moresource§fn with_content_type<V>(self, content_type: V) -> WithContentType<Self>
 
fn with_content_type<V>(self, content_type: V) -> WithContentType<Self>
Wrap an 
impl IntoResponse to with a new content type. Read moresource§fn with_status(self, status: StatusCode) -> WithStatus<Self>where
    Self: Sized,
 
fn with_status(self, status: StatusCode) -> WithStatus<Self>where
    Self: Sized,
Wrap an 
impl IntoResponse to set a status code. Read moreAuto 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
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoResult<T> for Twhere
    T: IntoResponse,
 
impl<T> IntoResult<T> for Twhere
    T: IntoResponse,
source§fn into_result(self) -> Result<T, Error>
 
fn into_result(self) -> Result<T, Error>
Consumes this value returns a 
poem::Result<T>.