[][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<'t, 'i>(
    selectors: &'i str
) -> Result<Self, ParseError<'i, SelectorParseErrorKind<'i>>>
[src]

Parses a CSS selector group.

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

Returns true if the element matches this selector.

Trait Implementations

impl Clone for Selector[src]

impl PartialEq<Selector> for Selector[src]

impl Debug for Selector[src]

Auto Trait Implementations

Blanket Implementations

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.

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

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

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