[][src]Struct juniper::LookAheadArgument

pub struct LookAheadArgument<'a, S: 'a> { /* fields omitted */ }

An argument passed into the query

Implementations

impl<'a, S> LookAheadArgument<'a, S> where
    S: ScalarValue
[src]

pub fn name(&'a self) -> &str[src]

The argument's name

pub fn value(&'a self) -> &LookAheadValue<'a, S>[src]

The value of the argument

Trait Implementations

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

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

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

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

Auto Trait Implementations

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

impl<'a, S> Send for LookAheadArgument<'a, S> where
    S: Sync

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

impl<'a, S> Unpin for LookAheadArgument<'a, S>

impl<'a, S> UnwindSafe for LookAheadArgument<'a, S> where
    S: RefUnwindSafe

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,