[][src]Struct url_scraper::UrlScraper

pub struct UrlScraper { /* fields omitted */ }

Stores the HTML document in memory.

Implementations

impl UrlScraper[src]

pub fn new(url: &str) -> Result<Self, Error>[src]

Constructs a new scraper from a given URL.

pub fn new_with_client(url: &str, client: &Client) -> Result<Self, Error>[src]

Use an existing reqwest::Client to make a request.

pub fn new_with_html(url: &str, html: &str) -> Result<Self, Error>[src]

In case the HTML has already been fetched in advance, this can be used to parse from it directly.

pub fn into_iter<'a>(&'a self) -> UrlIter<'a, 'a>[src]

Fetch the URLs using an iterator.

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, 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, U> TryInto<U> for T where
    U: TryFrom<T>, 

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