pub trait IntoRequestParameters {
// Required method
fn into_request_parameters(self) -> RequestParameters;
}Expand description
Convert self into a RequestParameters struct.
Required Methods§
Sourcefn into_request_parameters(self) -> RequestParameters
fn into_request_parameters(self) -> RequestParameters
Consumes self and returns a RequestParameters struct.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl IntoRequestParameters for Request
Available on crate feature async-graphql only.
impl IntoRequestParameters for Request
Available on crate feature
async-graphql only.fn into_request_parameters(self) -> RequestParameters
Source§impl<V> IntoRequestParameters for QueryBody<V>where
V: Serialize,
Available on crate feature graphql-client only.
impl<V> IntoRequestParameters for QueryBody<V>where
V: Serialize,
Available on crate feature
graphql-client only.