[][src]Enum async_graphql_parser::types::DocumentOperations

pub enum DocumentOperations {
    Single(Positioned<OperationDefinition>),
    Multiple(HashMap<Name, Positioned<OperationDefinition>>),
}

The operations of a GraphQL document.

There is either one anonymous operation or many named operations.

Variants

The document contains a single anonymous operation.

The document contains many named operations.

Implementations

impl DocumentOperations[src]

#[must_use]pub fn iter(&self) -> OperationsIter<'_>

Notable traits for OperationsIter<'a>

impl<'a> Iterator for OperationsIter<'a> type Item = (Option<&'a Name>, &'a Positioned<OperationDefinition>);
[src]

Iterate over the operations of the document.

Trait Implementations

impl Clone for DocumentOperations[src]

impl Debug for DocumentOperations[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.