[][src]Struct extrablatt::article::ArticleBuilder

pub struct ArticleBuilder { /* fields omitted */ }

Implementations

impl ArticleBuilder[src]

pub fn new<T: IntoUrl>(url: T) -> Result<Self>[src]

pub fn browser_user_agent<T: ToString>(self, browser_user_agent: T) -> Self[src]

pub fn timeout(self, dur: Duration) -> Self[src]

pub fn language(self, language: Language) -> Self[src]

pub async fn get(self) -> Result<Article>[src]

Downloads the article and extract it's content using the crate::DefaultExtractor.

pub async fn get_with_extractor<TExtract: Extractor, '_>(
    self,
    extractor: &'_ TExtract
) -> Result<Article>
[src]

Downloads the article and extracts it's content using the provided crate::Extractor.

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