[][src]Struct scraper::selector::Selector

pub struct Selector {
    pub selectors: SmallVec<[Selector<Simple>; 1]>,
}

Wrapper around CSS selectors.

Represents a "selector group", i.e. a comma-separated list of selectors.

Fields

selectors: SmallVec<[Selector<Simple>; 1]>

The CSS selectors.

Methods

impl Selector[src]

pub fn parse(
    selectors: &str
) -> Result<Self, ParseError<SelectorParseErrorKind>>
[src]

Parses a CSS selector group.

pub fn matches(&self, element: &ElementRef) -> bool[src]

Returns true if the element matches this selector.

pub fn matches_with_scope(
    &self,
    element: &ElementRef,
    scope: Option<ElementRef>
) -> bool
[src]

Returns true if the element matches this selector. The optional scope argument is used to specify which element has :scope pseudo-class. When it is None, :scope will match the root element.

Trait Implementations

impl Clone for Selector[src]

impl Debug for Selector[src]

impl PartialEq<Selector> for Selector[src]

impl StructuralPartialEq for Selector[src]

impl<'i> TryFrom<&'i str> for Selector[src]

type Error = ParseError<'i, SelectorParseErrorKind<'i>>

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.