Enum parser::ast::Literal [−][src]
pub enum Literal {
Integer(Integer),
Boolean(Boolean),
String(StringType),
Array(Array),
Hash(Hash),
}Variants
Integer(Integer)Tuple Fields of Integer
0: IntegerBoolean(Boolean)Tuple Fields of Boolean
0: BooleanString(StringType)Tuple Fields of String
0: StringTypeArray(Array)Tuple Fields of Array
0: ArrayHash(Hash)Tuple Fields of Hash
0: HashTrait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Literal
impl UnwindSafe for Literal
Blanket Implementations
Mutably borrows from an owned value. Read more