[][src]Struct downloader::DownloaderBuilder

pub struct DownloaderBuilder { /* fields omitted */ }

A builder for Downloader

Implementations

impl DownloaderBuilder[src]

pub fn user_agent(&mut self, user_agent: &str) -> &mut Self[src]

Set the user agent to be used.

A default value will be used if none is set.

pub fn connect_timeout(&mut self, timeout: Duration) -> &mut Self[src]

Set the connection timeout.

The default is 30s.

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

Set the timeout.

The default is 5min.

pub fn parallel_requests(&mut self, count: u16) -> &mut Self[src]

Set the number of parallel requests.

The default is 32.

pub fn retries(&mut self, count: u16) -> &mut Self[src]

Set the number of retries.

The default is 3.

pub fn download_folder(&mut self, folder: &Path) -> &mut Self[src]

Set the folder to download into.

The default is unset and a value is required.

pub fn build(&mut self) -> Result<Downloader>[src]

Build a downloader.

Errors

  • Error::Setup, when reqwest::Client setup fails

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> Instrument for T[src]

impl<T> Instrument 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>,