#[non_exhaustive]
pub struct Config { pub http_keep_alive: bool, pub tcp_no_delay: bool, pub timeout: Option<Duration>, pub max_connections_per_host: usize, pub tls_config: Option<Arc<TlsConnector>>, }
Expand description

Configuration for HttpClients.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
http_keep_alive: bool

HTTP/1.1 keep-alive (connection pooling).

Default: true.

Note: Does nothing on wasm_client.

tcp_no_delay: bool

TCP NO_DELAY.

Default: false.

Note: Does nothing on wasm_client.

timeout: Option<Duration>

Connection timeout duration.

Default: Some(Duration::from_secs(60)).

max_connections_per_host: usize

Maximum number of simultaneous connections that this client is allowed to keep open to individual hosts at one time.

Default: 50. This number is based on a few random benchmarks and see whatever gave decent perf vs resource use in Orogene.

Note: The behavior of this is different depending on the backend in use.

  • h1_client: 0 is disallowed and asserts as otherwise it would cause a semaphore deadlock.
  • curl_client: 0 allows for limitless connections per host.
  • hyper_client: No effect. Hyper does not support such an option.
  • wasm_client: No effect. Web browsers do not support such an option.
tls_config: Option<Arc<TlsConnector>>
Available on crate feature h1_client only.

TLS Configuration (Native TLS)

Implementations

Construct new empty config.

Set HTTP/1.1 keep-alive (connection pooling).

Set TCP NO_DELAY.

Set connection timeout duration.

Set the maximum number of simultaneous connections that this client is allowed to keep open to individual hosts at one time.

Available on crate feature h1_client only.

Set TLS Configuration (Native TLS)

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

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

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

Calls U::from(self).

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

Should always be Self

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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