pub enum DocumentOperations {
Single(Positioned<OperationDefinition>),
Multiple(HashMap<Name, Positioned<OperationDefinition>>),
}
Expand description
The operations of a GraphQL document.
There is either one anonymous operation or many named operations.
Variants
Single(Positioned<OperationDefinition>)
The document contains a single anonymous operation.
Multiple(HashMap<Name, Positioned<OperationDefinition>>)
The document contains many named operations.
Implementations
sourceimpl DocumentOperations
impl DocumentOperations
sourcepub fn iter(&self) -> OperationsIter<'_>ⓘNotable traits for OperationsIter<'a>impl<'a> Iterator for OperationsIter<'a> type Item = (Option<&'a Name>, &'a Positioned<OperationDefinition>);
pub fn iter(&self) -> OperationsIter<'_>ⓘNotable traits for OperationsIter<'a>impl<'a> Iterator for OperationsIter<'a> type Item = (Option<&'a Name>, &'a Positioned<OperationDefinition>);
Iterate over the operations of the document.
Trait Implementations
sourceimpl Clone for DocumentOperations
impl Clone for DocumentOperations
sourcefn clone(&self) -> DocumentOperations
fn clone(&self) -> DocumentOperations
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 DocumentOperations
impl Debug for DocumentOperations
sourceimpl<'de> Deserialize<'de> for DocumentOperations
impl<'de> Deserialize<'de> for DocumentOperations
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 DocumentOperations
impl Serialize for DocumentOperations
Auto Trait Implementations
impl RefUnwindSafe for DocumentOperations
impl Send for DocumentOperations
impl Sync for DocumentOperations
impl Unpin for DocumentOperations
impl UnwindSafe for DocumentOperations
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