pub enum LessNode {
RuleSet(RuleSet),
AtRule(AtRule),
Comment(String),
}Expand description
Less AST node variant.
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LessNode
impl<'de> Deserialize<'de> for LessNode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for LessNode
Auto Trait Implementations§
impl Freeze for LessNode
impl RefUnwindSafe for LessNode
impl Send for LessNode
impl Sync for LessNode
impl Unpin for LessNode
impl UnsafeUnpin for LessNode
impl UnwindSafe for LessNode
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