Enum lightningcss::error::SelectorError
source · pub enum SelectorError<'i> {
Show 19 variants
BadValueInAttr(Token<'i>),
ClassNeedsIdent(Token<'i>),
DanglingCombinator,
EmptySelector,
ExpectedBarInAttr(Token<'i>),
ExpectedNamespace(CowArcStr<'i>),
ExplicitNamespaceUnexpectedToken(Token<'i>),
InvalidPseudoClassAfterPseudoElement,
InvalidPseudoClassAfterWebKitScrollbar,
InvalidPseudoClassBeforeWebKitScrollbar,
InvalidQualNameInAttr(Token<'i>),
InvalidState,
MissingNestingPrefix,
MissingNestingSelector,
NoQualifiedNameInAttributeSelector(Token<'i>),
PseudoElementExpectedIdent(Token<'i>),
UnexpectedIdent(CowArcStr<'i>),
UnexpectedTokenInAttributeSelector(Token<'i>),
UnsupportedPseudoClassOrElement(CowArcStr<'i>),
}
Expand description
A selector parsing error.
Variants§
BadValueInAttr(Token<'i>)
An unexpected token was found in an attribute selector.
ClassNeedsIdent(Token<'i>)
An unexpected token was found in a class selector.
DanglingCombinator
A dangling combinator was found.
EmptySelector
An empty selector.
ExpectedBarInAttr(Token<'i>)
A |
was expected in an attribute selector.
ExpectedNamespace(CowArcStr<'i>)
A namespace was expected.
ExplicitNamespaceUnexpectedToken(Token<'i>)
An unexpected token was encountered in a namespace.
InvalidPseudoClassAfterPseudoElement
An invalid pseudo class was encountered after a pseudo element.
InvalidPseudoClassAfterWebKitScrollbar
An invalid pseudo class was encountered after a -webkit-scrollbar
pseudo element.
InvalidPseudoClassBeforeWebKitScrollbar
A -webkit-scrollbar
state was encountered before a -webkit-scrollbar
pseudo element.
InvalidQualNameInAttr(Token<'i>)
Invalid qualified name in attribute selector.
InvalidState
The current token is not allowed in this state.
MissingNestingPrefix
The selector is required to have the &
nesting selector at the start.
MissingNestingSelector
The selector is missing a &
nesting selector.
NoQualifiedNameInAttributeSelector(Token<'i>)
No qualified name in attribute selector.
PseudoElementExpectedIdent(Token<'i>)
An Invalid token was encountered in a pseudo element.
UnexpectedIdent(CowArcStr<'i>)
An unexpected identifier was encountered.
UnexpectedTokenInAttributeSelector(Token<'i>)
An unexpected token was encountered inside an attribute selector.
UnsupportedPseudoClassOrElement(CowArcStr<'i>)
An unsupported pseudo class or pseudo element was encountered.
Implementations§
source§impl<'i> SelectorError<'i>
impl<'i> SelectorError<'i>
sourcepub fn into_owned<'x>(self) -> SelectorError<'x>
pub fn into_owned<'x>(self) -> SelectorError<'x>
Consumes the value and returns an owned clone.
Trait Implementations§
source§impl<'i> Clone for SelectorError<'i>
impl<'i> Clone for SelectorError<'i>
source§fn clone(&self) -> SelectorError<'i>
fn clone(&self) -> SelectorError<'i>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'i> Debug for SelectorError<'i>
impl<'i> Debug for SelectorError<'i>
source§impl<'i> Display for SelectorError<'i>
impl<'i> Display for SelectorError<'i>
source§impl<'i> From<SelectorParseErrorKind<'i>> for SelectorError<'i>
impl<'i> From<SelectorParseErrorKind<'i>> for SelectorError<'i>
source§fn from(err: SelectorParseErrorKind<'i>) -> Self
fn from(err: SelectorParseErrorKind<'i>) -> Self
source§impl<'i> PartialEq<SelectorError<'i>> for SelectorError<'i>
impl<'i> PartialEq<SelectorError<'i>> for SelectorError<'i>
source§fn eq(&self, other: &SelectorError<'i>) -> bool
fn eq(&self, other: &SelectorError<'i>) -> bool
self
and other
values to be equal, and is used
by ==
.