pub enum StylesheetChildren<'tree> {
AtRule(Box<AtRule<'tree>>),
CharsetStatement(Box<CharsetStatement<'tree>>),
Declaration(Box<Declaration<'tree>>),
ImportStatement(Box<ImportStatement<'tree>>),
KeyframesStatement(Box<KeyframesStatement<'tree>>),
MediaStatement(Box<MediaStatement<'tree>>),
NamespaceStatement(Box<NamespaceStatement<'tree>>),
RuleSet(Box<RuleSet<'tree>>),
ScopeStatement(Box<ScopeStatement<'tree>>),
SupportsStatement(Box<SupportsStatement<'tree>>),
}Variants§
AtRule(Box<AtRule<'tree>>)
CharsetStatement(Box<CharsetStatement<'tree>>)
Declaration(Box<Declaration<'tree>>)
ImportStatement(Box<ImportStatement<'tree>>)
KeyframesStatement(Box<KeyframesStatement<'tree>>)
MediaStatement(Box<MediaStatement<'tree>>)
NamespaceStatement(Box<NamespaceStatement<'tree>>)
RuleSet(Box<RuleSet<'tree>>)
ScopeStatement(Box<ScopeStatement<'tree>>)
SupportsStatement(Box<SupportsStatement<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for StylesheetChildren<'tree>
impl<'tree> Clone for StylesheetChildren<'tree>
Source§fn clone(&self) -> StylesheetChildren<'tree>
fn clone(&self) -> StylesheetChildren<'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 StylesheetChildren<'tree>
impl<'tree> Debug for StylesheetChildren<'tree>
Source§impl<'tree> FromNode<'tree> for StylesheetChildren<'tree>
impl<'tree> FromNode<'tree> for StylesheetChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for StylesheetChildren<'tree>
impl<'tree> RefUnwindSafe for StylesheetChildren<'tree>
impl<'tree> Send for StylesheetChildren<'tree>
impl<'tree> Sync for StylesheetChildren<'tree>
impl<'tree> Unpin for StylesheetChildren<'tree>
impl<'tree> UnsafeUnpin for StylesheetChildren<'tree>
impl<'tree> UnwindSafe for StylesheetChildren<'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