Struct finchers_juniper::request::GraphQLRequestEndpoint [−][src]
pub struct GraphQLRequestEndpoint { /* fields omitted */ }
Trait Implementations
impl Debug for GraphQLRequestEndpoint
[src]
impl Debug for GraphQLRequestEndpoint
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a> Endpoint<'a> for GraphQLRequestEndpoint
[src]
impl<'a> Endpoint<'a> for GraphQLRequestEndpoint
type Output = (GraphQLRequest,)
The inner type associated with this endpoint.
type Future = RequestFuture<'a>
The type of value which will be returned from apply
.
fn apply(&'a self, cx: &mut ApplyContext) -> ApplyResult<Self::Future>
[src]
fn apply(&'a self, cx: &mut ApplyContext) -> ApplyResult<Self::Future>
Perform checking the incoming HTTP request and returns an instance of the associated Future if matched. Read more
fn with_output<T>(self) -> Self where
Self: Endpoint<'a, Output = T>,
T: Tuple,
[src]
fn with_output<T>(self) -> Self where
Self: Endpoint<'a, Output = T>,
T: Tuple,
Add an annotation that the associated type Output
is fixed to T
.
fn wrap<W>(self, wrapper: W) -> <W as Wrapper<'a, Self>>::Endpoint where
W: Wrapper<'a, Self>,
[src]
fn wrap<W>(self, wrapper: W) -> <W as Wrapper<'a, Self>>::Endpoint where
W: Wrapper<'a, Self>,
Converts self
using the provided Wrapper
.
Auto Trait Implementations
impl Send for GraphQLRequestEndpoint
impl Send for GraphQLRequestEndpoint
impl Sync for GraphQLRequestEndpoint
impl Sync for GraphQLRequestEndpoint