pub struct SelectorAst {
pub compounds: Vec<CompoundSelector>,
}Expand description
Parsed selector AST — a chain of compound selectors.
Fields§
§compounds: Vec<CompoundSelector>Ordered chain of compound selectors (left-to-right).
Trait Implementations§
Source§impl Clone for SelectorAst
impl Clone for SelectorAst
Source§fn clone(&self) -> SelectorAst
fn clone(&self) -> SelectorAst
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 Debug for SelectorAst
impl Debug for SelectorAst
Auto Trait Implementations§
impl Freeze for SelectorAst
impl RefUnwindSafe for SelectorAst
impl Send for SelectorAst
impl Sync for SelectorAst
impl Unpin for SelectorAst
impl UnsafeUnpin for SelectorAst
impl UnwindSafe for SelectorAst
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