pub struct StringNode {
pub loc: Loc,
pub value: String,
}Expand description
Represents a string as the value of a CSS declaration
Fields§
§loc: LocLocation information in the source file
value: StringThe value of the StringNode
Trait Implementations§
Source§impl Debug for StringNode
impl Debug for StringNode
Source§impl Default for StringNode
impl Default for StringNode
Source§fn default() -> StringNode
fn default() -> StringNode
Returns the “default value” for a type. Read more
Source§impl PartialEq for StringNode
impl PartialEq for StringNode
Source§impl Serialize for StringNode
impl Serialize for StringNode
impl StructuralPartialEq for StringNode
Auto Trait Implementations§
impl Freeze for StringNode
impl RefUnwindSafe for StringNode
impl Send for StringNode
impl Sync for StringNode
impl Unpin for StringNode
impl UnwindSafe for StringNode
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