pub struct CssCustomPropertyDefinition {
pub name: String,
pub value: String,
pub line: u32,
}Expand description
Located CSS custom-property definition with its rendered value. Internal staging for design-token reuse suggestions in the health layer.
Fields§
§name: StringCustom property name, including the leading --.
value: StringRendered custom property value.
line: u321-based line of the containing style rule.
Trait Implementations§
Source§impl Clone for CssCustomPropertyDefinition
impl Clone for CssCustomPropertyDefinition
Source§impl Debug for CssCustomPropertyDefinition
impl Debug for CssCustomPropertyDefinition
impl Eq for CssCustomPropertyDefinition
impl StructuralPartialEq for CssCustomPropertyDefinition
Auto Trait Implementations§
impl Freeze for CssCustomPropertyDefinition
impl RefUnwindSafe for CssCustomPropertyDefinition
impl Send for CssCustomPropertyDefinition
impl Sync for CssCustomPropertyDefinition
impl Unpin for CssCustomPropertyDefinition
impl UnsafeUnpin for CssCustomPropertyDefinition
impl UnwindSafe for CssCustomPropertyDefinition
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.