Struct selectors::parser::ComplexSelector [] [src]

pub struct ComplexSelector<Impl: SelectorImpl> {
    pub compound_selector: Vec<SimpleSelector<Impl>>,
    pub next: Option<(Arc<ComplexSelector<Impl>>, Combinator)>,
}

Fields

Methods

impl<Impl: SelectorImpl> ComplexSelector<Impl>
[src]

Whether this complex selector, if matching on a set of siblings, could affect other sibling's style.

Trait Implementations

impl<Impl: PartialEq + SelectorImpl> PartialEq for ComplexSelector<Impl>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<Impl: Hash + SelectorImpl> Hash for ComplexSelector<Impl>
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl<Impl: Eq + SelectorImpl> Eq for ComplexSelector<Impl>
[src]

impl<Impl: Clone + SelectorImpl> Clone for ComplexSelector<Impl>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Impl: SelectorImpl> Debug for ComplexSelector<Impl>
[src]

Formats the value using the given formatter.

impl<Impl: SelectorImpl> ToCss for ComplexSelector<Impl>
[src]

Serialize self in CSS syntax, writing to dest.

Serialize self in CSS syntax and return a string. Read more

Serialize self in CSS syntax and return a result compatible with std::fmt::Show. Read more