pub enum PostcssStatementChildren<'tree> {
AtKeyword(Box<AtKeyword<'tree>>),
BinaryExpression(Box<BinaryExpression<'tree>>),
CallExpression(Box<CallExpression<'tree>>),
ColorValue(Box<ColorValue<'tree>>),
FloatValue(Box<FloatValue<'tree>>),
GridValue(Box<GridValue<'tree>>),
Important(Box<Important<'tree>>),
ImportantValue(Box<ImportantValue<'tree>>),
IntegerValue(Box<IntegerValue<'tree>>),
ParenthesizedValue(Box<ParenthesizedValue<'tree>>),
PlainValue(Box<PlainValue<'tree>>),
StringValue(Box<StringValue<'tree>>),
}Variants§
AtKeyword(Box<AtKeyword<'tree>>)
BinaryExpression(Box<BinaryExpression<'tree>>)
CallExpression(Box<CallExpression<'tree>>)
ColorValue(Box<ColorValue<'tree>>)
FloatValue(Box<FloatValue<'tree>>)
GridValue(Box<GridValue<'tree>>)
Important(Box<Important<'tree>>)
ImportantValue(Box<ImportantValue<'tree>>)
IntegerValue(Box<IntegerValue<'tree>>)
ParenthesizedValue(Box<ParenthesizedValue<'tree>>)
PlainValue(Box<PlainValue<'tree>>)
StringValue(Box<StringValue<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for PostcssStatementChildren<'tree>
impl<'tree> Clone for PostcssStatementChildren<'tree>
Source§fn clone(&self) -> PostcssStatementChildren<'tree>
fn clone(&self) -> PostcssStatementChildren<'tree>
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<'tree> Debug for PostcssStatementChildren<'tree>
impl<'tree> Debug for PostcssStatementChildren<'tree>
Source§impl<'tree> FromNode<'tree> for PostcssStatementChildren<'tree>
impl<'tree> FromNode<'tree> for PostcssStatementChildren<'tree>
Source§impl<'tree> PartialEq for PostcssStatementChildren<'tree>
impl<'tree> PartialEq for PostcssStatementChildren<'tree>
Source§fn eq(&self, other: &PostcssStatementChildren<'tree>) -> bool
fn eq(&self, other: &PostcssStatementChildren<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for PostcssStatementChildren<'_>
impl Spanned for PostcssStatementChildren<'_>
impl<'tree> Eq for PostcssStatementChildren<'tree>
impl<'tree> StructuralPartialEq for PostcssStatementChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for PostcssStatementChildren<'tree>
impl<'tree> RefUnwindSafe for PostcssStatementChildren<'tree>
impl<'tree> Send for PostcssStatementChildren<'tree>
impl<'tree> Sync for PostcssStatementChildren<'tree>
impl<'tree> Unpin for PostcssStatementChildren<'tree>
impl<'tree> UnsafeUnpin for PostcssStatementChildren<'tree>
impl<'tree> UnwindSafe for PostcssStatementChildren<'tree>
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