Enum graphql_parser::query::Value [] [src]

pub enum Value {
    Variable(Name),
    Int(Number),
    Float(f64),
    String(String),
    Boolean(bool),
    Null,
    EnumValue(Name),
    ListValue(Vec<Value>),
    ObjectValue(BTreeMap<Name, Value>),
}

Variants

Trait Implementations

impl Display for Value
[src]

[src]

Formats the value using the given formatter. Read more

impl Debug for Value
[src]

[src]

Formats the value using the given formatter.

impl Clone for Value
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Value
[src]

[src]

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

[src]

This method tests for !=.