Struct actix_http::HttpServiceBuilder[][src]

pub struct HttpServiceBuilder<T, S, X = ExpectHandler, U = UpgradeHandler> { /* fields omitted */ }
Expand description

A HTTP service builder

This type can be used to construct an instance of HttpService through a builder-like pattern.

Implementations

Create instance of ServiceConfigBuilder

Set server keep-alive setting.

By default keep alive is set to a 5 seconds.

Set connection secure state

Set the local address that this service is bound to.

Set server client timeout in milliseconds for first request.

Defines a timeout for reading client request header. If a client does not transmit the entire set headers within this time, the request is terminated with the 408 (Request Time-out) error.

To disable timeout set value to 0.

By default client timeout is set to 5000 milliseconds.

Set server connection disconnect timeout in milliseconds.

Defines a timeout for disconnect connection. If a disconnect procedure does not complete within this time, the request get dropped. This timeout affects secure connections.

To disable timeout set value to 0.

By default disconnect timeout is set to 0.

Provide service for EXPECT: 100-Continue support.

Service get called with request that contains EXPECT header. Service must return request in case of success, in that case request will be forwarded to main service.

Provide service for custom Connection: UPGRADE support.

If service is provided then normal requests handling get halted and this service get called with original request and framed object.

Sets the callback to be run on connection establishment.

Has mutable access to a data container that will be merged into request extensions. This enables transport layer data (like client certificates) to be accessed in middleware and handlers.

Finish service configuration and create a HTTP Service for HTTP/1 protocol.

Finish service configuration and create a HTTP service for HTTP/2 protocol.

Finish service configuration and create HttpService instance.

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

Performs the conversion.

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

Performs the conversion.

Should always be Self

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.