Enum gtk4::CssParserError
source · #[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 Display for CssParserError
impl Display 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<CssParserError> for CssParserError
impl PartialEq<CssParserError> for CssParserError
source§fn eq(&self, other: &CssParserError) -> bool
fn eq(&self, other: &CssParserError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<CssParserError> for CssParserError
impl PartialOrd<CssParserError> for CssParserError
source§fn partial_cmp(&self, other: &CssParserError) -> Option<Ordering>
fn partial_cmp(&self, other: &CssParserError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more