Trait GQLHttpRequest
async_graphql::http
pub trait GQLHttpRequest { type Body: AsyncRead + Send + Unpin; fn content_type(&self) -> Option<&str>; fn into_body(self) -> Self::Body; }
Http request trait for GraphQL
type Body: AsyncRead + Send + Unpin
fn content_type(&self) -> Option<&str>
fn into_body(self) -> Self::Body