pub enum SelectorError<'i> {
Show 21 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>),
AmbiguousCssModuleClass(CowArcStr<'i>),
UnexpectedSelectorAfterPseudoElement(Token<'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.
AmbiguousCssModuleClass(CowArcStr<'i>)
Ambiguous CSS module class.
UnexpectedSelectorAfterPseudoElement(Token<'i>)
An unexpected token was encountered after a pseudo element.
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<'any, 'i> IntoOwned<'any> for SelectorError<'i>
impl<'any, 'i> IntoOwned<'any> for SelectorError<'i>
Source§fn into_owned(self) -> Self::Owned
fn into_owned(self) -> Self::Owned
Consumes the value and returns an owned clone.
Source§type Owned = SelectorError<'any>
type Owned = SelectorError<'any>
Self
with a new lifetime.Source§impl<'i> PartialEq for SelectorError<'i>
impl<'i> PartialEq for SelectorError<'i>
Source§impl<'i> Serialize for SelectorError<'i>
impl<'i> Serialize for SelectorError<'i>
impl<'i> StructuralPartialEq for SelectorError<'i>
Auto Trait Implementations§
impl<'i> Freeze for SelectorError<'i>
impl<'i> RefUnwindSafe for SelectorError<'i>
impl<'i> Send for SelectorError<'i>
impl<'i> Sync for SelectorError<'i>
impl<'i> Unpin for SelectorError<'i>
impl<'i> UnwindSafe for SelectorError<'i>
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more