Enum lightningcss::error::ParserError  
source · pub enum ParserError<'i> {
Show 16 variants
    AtRuleBodyInvalid,
    AtRulePreludeInvalid,
    AtRuleInvalid(CowArcStr<'i>),
    EndOfInput,
    InvalidDeclaration,
    InvalidMediaQuery,
    InvalidNesting,
    DeprecatedNestRule,
    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.
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.
§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§fn eq(&self, other: &ParserError<'i>) -> bool
 
fn eq(&self, other: &ParserError<'i>) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.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
§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<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