Enum syntex_syntax::ast::Lit_
[−]
[src]
pub enum Lit_ { LitStr(InternedString, StrStyle), LitByteStr(Rc<Vec<u8>>), LitByte(u8), LitChar(char), LitInt(u64, LitIntType), LitFloat(InternedString, FloatTy), LitFloatUnsuffixed(InternedString), LitBool(bool), }
Variants
LitStr | A string literal ( |
LitByteStr | A byte string ( |
LitByte | A byte char ( |
LitChar | A character literal ( |
LitInt | An integer literal ( |
LitFloat | A float literal ( |
LitFloatUnsuffixed | A float literal without a suffix ( |
LitBool | A boolean literal |