[][src]Enum juniper::Selection

pub enum Selection<'a, S = DefaultScalarValue> {
    Field(Spanning<Field<'a, S>>),
    FragmentSpread(Spanning<FragmentSpread<'a, S>>),
    InlineFragment(Spanning<InlineFragment<'a, S>>),
}

Entry in a GraphQL selection set

This enum represents one of the three variants of a selection that exists in GraphQL: a field, a fragment spread, or an inline fragment. Each of the variants references their location in the query source.

{
  field(withArg: 123) { subField }
  ...fragmentSpread
  ...on User {
    inlineFragmentField
  }
}

Variants

Field(Spanning<Field<'a, S>>)
FragmentSpread(Spanning<FragmentSpread<'a, S>>)
InlineFragment(Spanning<InlineFragment<'a, S>>)

Trait Implementations

impl<'a, S: Clone> Clone for Selection<'a, S>[src]

impl<'a, S: Debug> Debug for Selection<'a, S>[src]

impl<'a, S: PartialEq> PartialEq<Selection<'a, S>> for Selection<'a, S>[src]

impl<'a, S> StructuralPartialEq for Selection<'a, S>[src]

Auto Trait Implementations

impl<'a, S> RefUnwindSafe for Selection<'a, S> where
    S: RefUnwindSafe

impl<'a, S> Send for Selection<'a, S> where
    S: Send

impl<'a, S> Sync for Selection<'a, S> where
    S: Sync

impl<'a, S> Unpin for Selection<'a, S> where
    S: Unpin

impl<'a, S> UnwindSafe for Selection<'a, S> where
    S: UnwindSafe

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.