pub enum ParserError<'i> {
Show 17 variants
AtRuleBodyInvalid,
AtRulePreludeInvalid,
AtRuleInvalid(CowArcStr<'i>),
EndOfInput,
InvalidDeclaration,
InvalidMediaQuery,
InvalidNesting,
DeprecatedNestRule,
DeprecatedCssModulesValueRule,
InvalidPageSelector,
InvalidValue,
QualifiedRuleInvalid,
SelectorError(SelectorError<'i>),
UnexpectedImportRule,
UnexpectedNamespaceRule,
UnexpectedToken(Token<'i>),
MaximumNestingDepth,
}
Expand description
A parser error.
Variants§
AtRuleBodyInvalid
An at rule body was invalid.
AtRulePreludeInvalid
An at rule prelude was invalid
AtRuleInvalid(CowArcStr<'i>)
An unknown or unsupported at rule was encountered.
EndOfInput
Unexpectedly encountered the end of input data.
InvalidDeclaration
A declaration was invalid.
InvalidMediaQuery
A media query was invalid.
InvalidNesting
Invalid CSS nesting.
DeprecatedNestRule
The @nest rule is deprecated.
DeprecatedCssModulesValueRule
The @value rule (of CSS modules) is deprecated.
InvalidPageSelector
An invalid selector in an @page
rule.
InvalidValue
An invalid value was encountered.
QualifiedRuleInvalid
Invalid qualified rule.
SelectorError(SelectorError<'i>)
A selector was invalid.
UnexpectedImportRule
An @import
rule was encountered after any rule besides @charset
or @layer
.
UnexpectedNamespaceRule
A @namespace
rule was encountered after any rules besides @charset
, @import
, or @layer
.
UnexpectedToken(Token<'i>)
An unexpected token was encountered.
MaximumNestingDepth
Maximum nesting depth was reached.
Implementations§
Trait Implementations§
Source§impl<'i> Clone for ParserError<'i>
impl<'i> Clone for ParserError<'i>
Source§fn clone(&self) -> ParserError<'i>
fn clone(&self) -> ParserError<'i>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'i> Debug for ParserError<'i>
impl<'i> Debug for ParserError<'i>
Source§impl<'i> Display for ParserError<'i>
impl<'i> Display for ParserError<'i>
Source§impl<'i> From<SelectorParseErrorKind<'i>> for ParserError<'i>
impl<'i> From<SelectorParseErrorKind<'i>> for ParserError<'i>
Source§fn from(err: SelectorParseErrorKind<'i>) -> ParserError<'i>
fn from(err: SelectorParseErrorKind<'i>) -> ParserError<'i>
Converts to this type from the input type.
Source§impl<'any, 'i> IntoOwned<'any> for ParserError<'i>
impl<'any, 'i> IntoOwned<'any> for ParserError<'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 = ParserError<'any>
type Owned = ParserError<'any>
A variant of
Self
with a new lifetime.Source§impl<'i> PartialEq for ParserError<'i>
impl<'i> PartialEq for ParserError<'i>
Source§impl<'i> Serialize for ParserError<'i>
impl<'i> Serialize for ParserError<'i>
impl<'i> StructuralPartialEq for ParserError<'i>
Auto Trait Implementations§
impl<'i> Freeze for ParserError<'i>
impl<'i> RefUnwindSafe for ParserError<'i>
impl<'i> Send for ParserError<'i>
impl<'i> Sync for ParserError<'i>
impl<'i> Unpin for ParserError<'i>
impl<'i> UnwindSafe for ParserError<'i>
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
Converts
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>
Converts
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