Enum juniper::LookAheadValue[][src]

pub enum LookAheadValue<'a> {
    Null,
    Int(i32),
    Float(f64),
    String(&'a str),
    Boolean(bool),
    Enum(&'a str),
    List(Vec<LookAheadValue<'a>>),
    Object(Vec<(&'a str, LookAheadValue<'a>)>),
}

A JSON-like value that can is used as argument in the query execution

In contrast to InputValue these values do only contain constants, meaning that variables are already resolved.

Variants

Trait Implementations

impl<'a> Debug for LookAheadValue<'a>
[src]

Formats the value using the given formatter. Read more

impl<'a> Clone for LookAheadValue<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> PartialEq for LookAheadValue<'a>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl<'a> Send for LookAheadValue<'a>

impl<'a> Sync for LookAheadValue<'a>