Enum minifier::js::token::Token [] [src]

pub enum Token<'a> {
    Keyword(Keyword),
    Char(ReservedChar),
    String(&'a str),
    Comment(&'a str),
    License(&'a str),
    Other(&'a str),
    Condition(Condition),
    Operation(Operation),
}

Variants

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

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

[src]

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

[src]

This method tests for !=.

impl<'a> Display for Token<'a>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for Token<'a>

impl<'a> Sync for Token<'a>