Enum html5ever::tokenizer::Token [] [src]

pub enum Token {
    DoctypeToken(Doctype),
    TagToken(Tag),
    CommentToken(StrTendril),
    CharacterTokens(StrTendril),
    NullCharacterToken,
    EOFToken,
    ParseError(Cow<'static, str>),
}

Variants

DoctypeToken(Doctype)TagToken(Tag)CommentToken(StrTendril)CharacterTokens(StrTendril)NullCharacterTokenEOFTokenParseError(Cow<'static, str>)

Trait Implementations

impl Debug for Token
[src]

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

Formats the value using the given formatter.

impl Eq for Token
[src]

impl PartialEq for Token
[src]

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

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

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

This method tests for !=.

impl Send for Token
[src]