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
String(String)Number(RpNumber)Boolean(bool)Identifier(&'input str)Array(Vec<Loc<Value<'input>>>)
Trait Implementations
impl<'input> Debug for Value<'input>[src]
impl<'input> PartialEq for Value<'input>[src]
fn eq(&self, __arg_0: &Value<'input>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Value<'input>) -> bool[src]
This method tests for !=.