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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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