pub enum Color {
Currentcolor(Ident),
Transparent(Ident),
System(SystemColor),
Hex(Hash),
Named(NamedColor),
Function(ColorFunction),
}Variants§
Currentcolor(Ident)
Transparent(Ident)
System(SystemColor)
Hex(Hash)
Named(NamedColor)
Function(ColorFunction)
Trait Implementations§
Source§impl NodeWithMetadata<CssMetadata> for Color
impl NodeWithMetadata<CssMetadata> for Color
Source§fn self_metadata(&self) -> CssMetadata
fn self_metadata(&self) -> CssMetadata
Returns the metadata contributed by this node itself, not including children.
Most nodes don’t contribute metadata, so can simply return
M::default().
Nodes like StyleRule or AtRules should return their own node kind flags here.Source§fn metadata(&self) -> CssMetadata
fn metadata(&self) -> CssMetadata
Returns the complete aggregated metadata for this node (self + children).
Default implementation merges children’s metadata with self_metadata().
Source§impl Ord for Color
impl Ord for Color
Source§impl PartialOrd for Color
impl PartialOrd for Color
Source§impl SemanticEq for Color
impl SemanticEq for Color
Source§fn semantic_eq(&self, other: &Self) -> bool
fn semantic_eq(&self, other: &Self) -> bool
Returns
true if self and other are semantically equal.Source§impl ToCursors for Color
impl ToCursors for Color
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for Color
impl StructuralPartialEq for Color
Auto Trait Implementations§
impl Freeze for Color
impl RefUnwindSafe for Color
impl Send for Color
impl Sync for Color
impl Unpin for Color
impl UnwindSafe for Color
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