#[non_exhaustive]pub enum CssParserError {
Failed,
Syntax,
Import,
Name,
UnknownValue,
}
Expand description
Errors that can occur while parsing CSS.
These errors are unexpected and will cause parts of the given CSS to be ignored.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Failed
Unknown failure.
Syntax
The given text does not form valid syntax
Import
Failed to import a resource
Name
The given name has not been defined
UnknownValue
The given value is not correct
Trait Implementations§
Source§impl Clone for CssParserError
impl Clone for CssParserError
Source§fn clone(&self) -> CssParserError
fn clone(&self) -> CssParserError
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 Debug for CssParserError
impl Debug for CssParserError
Source§impl ErrorDomain for CssParserError
impl ErrorDomain for CssParserError
Source§impl Hash for CssParserError
impl Hash for CssParserError
Source§impl Ord for CssParserError
impl Ord for CssParserError
Source§fn cmp(&self, other: &CssParserError) -> Ordering
fn cmp(&self, other: &CssParserError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CssParserError
impl PartialEq for CssParserError
Source§impl PartialOrd for CssParserError
impl PartialOrd for CssParserError
impl Copy for CssParserError
impl Eq for CssParserError
impl StructuralPartialEq for CssParserError
Auto Trait Implementations§
impl Freeze for CssParserError
impl RefUnwindSafe for CssParserError
impl Send for CssParserError
impl Sync for CssParserError
impl Unpin for CssParserError
impl UnwindSafe for CssParserError
Blanket Implementations§
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
)