pub struct CssRawStyleValue {
pub axis: String,
pub property: String,
pub value: String,
pub line: u32,
}Expand description
Located raw styling value authored directly in CSS rather than via a custom property or design-token helper. Internal staging for the health layer; public output adds actions and confidence.
Fields§
§axis: StringValue axis, e.g. color, font-size, line-height, radius, or shadow.
property: StringCSS property where the value appears.
value: StringRendered declaration value.
line: u321-based line of the containing style rule.
Trait Implementations§
Source§impl Clone for CssRawStyleValue
impl Clone for CssRawStyleValue
Source§impl Debug for CssRawStyleValue
impl Debug for CssRawStyleValue
impl Eq for CssRawStyleValue
Source§impl PartialEq for CssRawStyleValue
impl PartialEq for CssRawStyleValue
impl StructuralPartialEq for CssRawStyleValue
Auto Trait Implementations§
impl Freeze for CssRawStyleValue
impl RefUnwindSafe for CssRawStyleValue
impl Send for CssRawStyleValue
impl Sync for CssRawStyleValue
impl Unpin for CssRawStyleValue
impl UnsafeUnpin for CssRawStyleValue
impl UnwindSafe for CssRawStyleValue
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.