[][src]Struct juniper_from_schema::QueryTrail

pub struct QueryTrail<'a, T, K> { /* fields omitted */ }

A wrapper around a juniper::LookAheadSelection with methods for each possible child.

Methods

impl<'a, T> QueryTrail<'a, T, NotWalked>[src]

pub fn walk(self) -> Option<QueryTrail<'a, T, Walked>>[src]

Check if the trail is present in the query being executed

Auto Trait Implementations

impl<'a, T, K> RefUnwindSafe for QueryTrail<'a, T, K> where
    K: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, T, K> Send for QueryTrail<'a, T, K> where
    K: Send,
    T: Send

impl<'a, T, K> Sync for QueryTrail<'a, T, K> where
    K: Sync,
    T: Sync

impl<'a, T, K> Unpin for QueryTrail<'a, T, K> where
    K: Unpin,
    T: Unpin

impl<'a, T, K> UnwindSafe for QueryTrail<'a, T, K> where
    K: UnwindSafe,
    T: 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, 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.