pub struct SpecifiedValue {
pub originalCss: String,
}
Expand description
A specified value for a property is just a set of tokens.
The original CSS is preserved for serialization, as are variable references to other property names.
Fields§
§originalCss: String
Trait Implementations§
Source§impl Clone for SpecifiedValue
impl Clone for SpecifiedValue
Source§fn clone(&self) -> SpecifiedValue
fn clone(&self) -> SpecifiedValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SpecifiedValue
impl Debug for SpecifiedValue
Source§impl Hash for SpecifiedValue
impl Hash for SpecifiedValue
Source§impl Ord for SpecifiedValue
impl Ord for SpecifiedValue
Source§fn cmp(&self, other: &SpecifiedValue) -> Ordering
fn cmp(&self, other: &SpecifiedValue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SpecifiedValue
impl PartialEq for SpecifiedValue
Source§impl PartialOrd for SpecifiedValue
impl PartialOrd for SpecifiedValue
Source§impl ToCss for SpecifiedValue
impl ToCss for SpecifiedValue
impl Eq for SpecifiedValue
impl StructuralPartialEq for SpecifiedValue
Auto Trait Implementations§
impl Freeze for SpecifiedValue
impl RefUnwindSafe for SpecifiedValue
impl Send for SpecifiedValue
impl Sync for SpecifiedValue
impl Unpin for SpecifiedValue
impl UnwindSafe for SpecifiedValue
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