Enum selectors::parser::SelectorParseErrorKind[][src]

pub enum SelectorParseErrorKind<'i> {
    PseudoElementInComplexSelector,
    NoQualifiedNameInAttributeSelector(Token<'i>),
    EmptySelector,
    DanglingCombinator,
    NonSimpleSelectorInNegation,
    NonCompoundSelector,
    UnexpectedTokenInAttributeSelector(Token<'i>),
    PseudoElementExpectedColon(Token<'i>),
    PseudoElementExpectedIdent(Token<'i>),
    NoIdentForPseudo(Token<'i>),
    UnsupportedPseudoClassOrElement(CowRcStr<'i>),
    UnexpectedIdent(CowRcStr<'i>),
    ExpectedNamespace(CowRcStr<'i>),
    ExpectedBarInAttr(Token<'i>),
    BadValueInAttr(Token<'i>),
    InvalidQualNameInAttr(Token<'i>),
    ExplicitNamespaceUnexpectedToken(Token<'i>),
    ClassNeedsIdent(Token<'i>),
    EmptyNegation,
}

Variants

Trait Implementations

impl<'i> Clone for SelectorParseErrorKind<'i>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'i> Debug for SelectorParseErrorKind<'i>
[src]

Formats the value using the given formatter. Read more

impl<'i> PartialEq for SelectorParseErrorKind<'i>
[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<'i> !Send for SelectorParseErrorKind<'i>

impl<'i> !Sync for SelectorParseErrorKind<'i>