Enum html5ever::tokenizer::SetResult [] [src]

pub enum SetResult {
    FromSet(char),
    NotFromSet(Tendril<UTF8, NonAtomic>),
}

Result from pop_except_from containing either a character from a SmallCharSet, or a string buffer of characters not from the set.

Variants

A character from the SmallCharSet.

A string buffer containing no characters from the SmallCharSet.

Trait Implementations

impl PartialEq<SetResult> for SetResult
[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 Debug for SetResult
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for SetResult
[src]