Skip to main content

FetcherConfig

Struct FetcherConfig 

Source
pub struct FetcherConfig {
    pub impersonate: Impersonate,
    pub stealthy_headers: bool,
    pub proxy: Option<Proxy>,
    pub timeout_secs: u64,
    pub headers: HashMap<String, String>,
    pub retries: u32,
    pub retry_delay_secs: u64,
    pub follow_redirects: FollowRedirects,
    pub max_redirects: usize,
    pub verify: bool,
}
Expand description

Configuration for the HTTP fetcher.

This struct holds the default settings applied to every request made by a Fetcher or FetcherSession. Individual requests can override most of these via RequestConfig. Use FetcherConfigBuilder for a validated, fluent construction path.

Fields§

§impersonate: Impersonate

The browser impersonation profile to use. Controls which TLS and HTTP/2 fingerprint the client presents to the server. Defaults to Chrome.

§stealthy_headers: bool

Whether to inject stealth headers (Referer, Sec-Ch-Ua, etc.) that make requests look like they come from a real browser. Enabled by default.

§proxy: Option<Proxy>

An optional static proxy to route all requests through. If you need to rotate across multiple proxies, use a ProxyRotator instead.

§timeout_secs: u64

Request timeout in seconds. Defaults to 30. Applies to the entire request lifecycle including DNS resolution, connection, and response body download.

§headers: HashMap<String, String>

Default headers to include with every request. These are merged with per-request headers, with per-request values taking precedence on conflict.

§retries: u32

Maximum number of retry attempts per request. Defaults to 3. Set to 1 to disable retries entirely.

§retry_delay_secs: u64

Delay in seconds between retry attempts. Defaults to 1. This is a fixed delay, not exponential backoff.

§follow_redirects: FollowRedirects

The redirect-following policy. Defaults to FollowRedirects::Safe.

§max_redirects: usize

Maximum number of redirects to follow before giving up. Defaults to 30. Only applies when follow_redirects is not FollowRedirects::None.

§verify: bool

Whether to verify TLS certificates. Defaults to true. Set to false only for testing against self-signed certificates – never in production.

Trait Implementations§

Source§

impl Clone for FetcherConfig

Source§

fn clone(&self) -> FetcherConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for FetcherConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for FetcherConfig

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more