Struct async_graphql_parser::types::OperationDefinition
source · [−]pub struct OperationDefinition {
pub ty: OperationType,
pub variable_definitions: Vec<Positioned<VariableDefinition>>,
pub directives: Vec<Positioned<Directive>>,
pub selection_set: Positioned<SelectionSet>,
}
Expand description
A GraphQL operation, such as mutation($content:String!) { makePost(content: $content) { id } }
.
Fields
ty: OperationType
The type of operation.
variable_definitions: Vec<Positioned<VariableDefinition>>
The variable definitions.
directives: Vec<Positioned<Directive>>
The operation’s directives.
selection_set: Positioned<SelectionSet>
The operation’s selection set.
Trait Implementations
sourceimpl Clone for OperationDefinition
impl Clone for OperationDefinition
sourcefn clone(&self) -> OperationDefinition
fn clone(&self) -> OperationDefinition
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for OperationDefinition
impl Debug for OperationDefinition
sourceimpl<'de> Deserialize<'de> for OperationDefinition
impl<'de> Deserialize<'de> for OperationDefinition
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for OperationDefinition
impl Serialize for OperationDefinition
Auto Trait Implementations
impl RefUnwindSafe for OperationDefinition
impl Send for OperationDefinition
impl Sync for OperationDefinition
impl Unpin for OperationDefinition
impl UnwindSafe for OperationDefinition
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