pub struct IdentNode {
pub loc: Loc,
pub name: String,
}Expand description
Represents an identifier as the value of a CSS declaration
Fields§
§loc: LocLocation information in the source file
name: StringThe name of the IdentNode
Trait Implementations§
impl StructuralPartialEq for IdentNode
Auto Trait Implementations§
impl Freeze for IdentNode
impl RefUnwindSafe for IdentNode
impl Send for IdentNode
impl Sync for IdentNode
impl Unpin for IdentNode
impl UnwindSafe for IdentNode
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