pub enum CssValue {
Color(Color),
Number(f32),
Keyword(String),
Inherit,
Initial,
Unset,
}Expand description
A parsed CSS property value.
Variants§
Color(Color)
A colour value (e.g. #ff0000, rgb(255, 0, 0)).
Number(f32)
A numeric value in pixels or unitless (e.g. 14, 8px).
Keyword(String)
An unrecognised keyword (e.g. bold, auto).
Inherit
The CSS inherit keyword.
Initial
The CSS initial keyword.
Unset
The CSS unset keyword.
Trait Implementations§
impl StructuralPartialEq for CssValue
Auto Trait Implementations§
impl Freeze for CssValue
impl RefUnwindSafe for CssValue
impl Send for CssValue
impl Sync for CssValue
impl Unpin for CssValue
impl UnsafeUnpin for CssValue
impl UnwindSafe for CssValue
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