pub struct ServerConfig { /* private fields */ }
Expand description

Advanced server configuration.

Implementations

Returns the number of processors the server is allocated.

This is only used to derive default values for other settings in this type.

Defaults to the number of logical CPUs.

Returns the minimum number of threads in the pool used to process blocking endpoints.

Defaults to 8 times the number of processors.

Returns the maximum number of threads in the pool used to process blocking endpoints.

Defaults to the maximum of 32 times the number of processors and 256.

Returns the maximum number of live TCP connections the server will allow at any time.

Defaults to 10 times the value of Self::max_threads.

Returns the number of threads used for nonblocking operations in the server’s Tokio runtime.

Defaults to half the number of processors.

Returns the amount of time a thread in the blocking request pool will sit idle before shutting down.

Defaults to 5 minutes.

Returns the amount of time the server will wait for pending requests to complete when shutting down.

Defaults to 15 seconds.

Determines if responses larger than 1 MiB will be compressed with gzip.

Defaults to true.

Determines if the server will support the HTTP2 protocol.

Defaults to false.

Returns the amount of time the server allows TCP connections to remain idle before shutting them down.

If None, defaults to 1 minute. If Some, the time will be included in HTTP responses in a Keep-Alive header.

Returns a new builder.

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

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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