Enum erl_tokenize::TokenValue [] [src]

pub enum TokenValue<'a> {
    Atom(&'a str),
    Char(char),
    Comment(&'a str),
    Float(f64),
    Integer(&'a BigUint),
    Keyword(Keyword),
    String(&'a str),
    Symbol(Symbol),
    Variable(&'a str),
    Whitespace(Whitespace),
}

Token value.

Variants

Trait Implementations

impl<'a> Debug for TokenValue<'a>
[src]

Formats the value using the given formatter.

impl<'a> PartialEq for TokenValue<'a>
[src]

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

This method tests for !=.