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§
Source§impl AstPositionExt for OperationDefinition
impl AstPositionExt for OperationDefinition
Source§fn default_position(self) -> Positioned<Self>
fn default_position(self) -> Positioned<Self>
Create a positioned version of this AST node with the default position (0:0).
Source§fn with_position(self, pos: Pos) -> Positioned<Self>
fn with_position(self, pos: Pos) -> Positioned<Self>
Create a positioned version of this AST node with the given position.
Source§impl Clone for OperationDefinition
impl Clone for OperationDefinition
Source§fn clone(&self) -> OperationDefinition
fn clone(&self) -> OperationDefinition
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OperationDefinition
impl Debug for OperationDefinition
Source§impl<'de> Deserialize<'de> for OperationDefinition
impl<'de> Deserialize<'de> for OperationDefinition
Source§fn 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
Source§impl IntoAst<OperationDefinition> for OperationDefinition
impl IntoAst<OperationDefinition> for OperationDefinition
Source§fn into_ast(self) -> OperationDefinition
fn into_ast(self) -> OperationDefinition
Returns the input value unchanged.
Auto Trait Implementations§
impl Freeze for OperationDefinition
impl RefUnwindSafe for OperationDefinition
impl Send for OperationDefinition
impl Sync for OperationDefinition
impl Unpin for OperationDefinition
impl UnwindSafe for OperationDefinition
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