[][src]Struct quick_crawler::scrape::Scrape

pub struct Scrape {
    pub executables: Vec<Box<Ops>>,
}

Fields

executables: Vec<Box<Ops>>

Implementations

impl Scrape[src]

pub fn new() -> Scrape[src]

pub fn find_elements_with_data<S: Into<String>>(self, predicate: S) -> Self[src]

pub fn extract_data_from_elements(self, extractor: ElementDataExtractor) -> Self[src]

pub fn find_elements_with_urls<S: Into<String>>(self, predicate: S) -> Self[src]

pub fn extract_urls_from_elements(self, extractor: ElementUrlExtractor) -> Self[src]

pub fn response_logic(self, resp_logic: ResponseLogic) -> Self[src]

pub fn store(self, c: impl Store) -> Self[src]

Auto Trait Implementations

impl !RefUnwindSafe for Scrape

impl Send for Scrape

impl Sync for Scrape

impl Unpin for Scrape

impl !UnwindSafe for Scrape

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> Erased for T

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

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,