Enum gtk4::CssParserWarning [−][src]
#[non_exhaustive]
pub enum CssParserWarning {
Deprecated,
Syntax,
Unimplemented,
// some variants omitted
}
Expand description
Warnings that can occur while parsing CSS.
Unlike CssParserError
s, warnings do not cause the parser to
skip any input, but they indicate issues that should be fixed.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
The given construct is deprecated and will be removed in a future version
A syntax construct was used that should be avoided
A feature is not implemented
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for CssParserWarning
impl Send for CssParserWarning
impl Sync for CssParserWarning
impl Unpin for CssParserWarning
impl UnwindSafe for CssParserWarning
Blanket Implementations
Mutably borrows from an owned value. Read more