Enum syntax::ast::Lit_Unstable [-] [+] [src]

pub enum Lit_ {
    LitStr(InternedString, StrStyle),
    LitBinary(Rc<Vec<u8>>),
    LitByte(u8),
    LitChar(char),
    LitInt(u64, LitIntType),
    LitFloat(InternedString, FloatTy),
    LitFloatUnsuffixed(InternedString),
    LitBool(bool),
}

Variants

LitStr
LitBinary
LitByte
LitChar
LitInt
LitFloat
LitFloatUnsuffixed
LitBool

Trait Implementations

Derived Implementations

impl Debug for Lit_

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Hash for Lit_

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl Decodable for Lit_

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Lit_, Error>

impl Encodable for Lit_

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), Error>

impl Eq for Lit_

fn assert_receiver_is_total_eq(&self)

impl PartialEq for Lit_

fn eq(&self, __arg_0: &Lit_) -> bool

fn ne(&self, __arg_0: &Lit_) -> bool

impl Clone for Lit_

fn clone(&self) -> Lit_

fn clone_from(&mut self, source: &Self)