pub enum MediaStatementChildren<'tree> {
BinaryQuery(Box<BinaryQuery<'tree>>),
Block(Box<Block<'tree>>),
FeatureQuery(Box<FeatureQuery<'tree>>),
KeywordQuery(Box<KeywordQuery<'tree>>),
ParenthesizedQuery(Box<ParenthesizedQuery<'tree>>),
SelectorQuery(Box<SelectorQuery<'tree>>),
UnaryQuery(Box<UnaryQuery<'tree>>),
}Variants§
BinaryQuery(Box<BinaryQuery<'tree>>)
Block(Box<Block<'tree>>)
FeatureQuery(Box<FeatureQuery<'tree>>)
KeywordQuery(Box<KeywordQuery<'tree>>)
ParenthesizedQuery(Box<ParenthesizedQuery<'tree>>)
SelectorQuery(Box<SelectorQuery<'tree>>)
UnaryQuery(Box<UnaryQuery<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for MediaStatementChildren<'tree>
impl<'tree> Clone for MediaStatementChildren<'tree>
Source§fn clone(&self) -> MediaStatementChildren<'tree>
fn clone(&self) -> MediaStatementChildren<'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 MediaStatementChildren<'tree>
impl<'tree> Debug for MediaStatementChildren<'tree>
Source§impl<'tree> FromNode<'tree> for MediaStatementChildren<'tree>
impl<'tree> FromNode<'tree> for MediaStatementChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for MediaStatementChildren<'tree>
impl<'tree> RefUnwindSafe for MediaStatementChildren<'tree>
impl<'tree> Send for MediaStatementChildren<'tree>
impl<'tree> Sync for MediaStatementChildren<'tree>
impl<'tree> Unpin for MediaStatementChildren<'tree>
impl<'tree> UnsafeUnpin for MediaStatementChildren<'tree>
impl<'tree> UnwindSafe for MediaStatementChildren<'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