Enum reproto_parser::ast::Value [] [src]

pub enum Value<'input> {
    String(String),
    Number(RpNumber),
    Boolean(bool),
    Identifier(&'input str),
    Array(Vec<Loc<Value<'input>>>),
}

Variants

Trait Implementations

impl<'input> Debug for Value<'input>
[src]

[src]

Formats the value using the given formatter.

impl<'input> PartialEq for Value<'input>
[src]

[src]

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

[src]

This method tests for !=.

impl<'input> Eq for Value<'input>
[src]