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

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

Variants

Comment.

Comment starting with /**.

Methods

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

Trait Implementations

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

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

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

This method tests for !=.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

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

Formats the value using the given formatter. Read more

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

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

This method tests for !=.

Auto Trait Implementations

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

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