Struct hyper::server::conn::Http [−][src]
pub struct Http<E = Exec> { /* fields omitted */ }server and (crate features http1 or http2) only.Expand description
A lower-level configuration of the HTTP protocol.
This structure is used to configure options for an HTTP server connection.
If you don’t have need to manage connections yourself, consider using the higher-level Server API.
Implementations
This is supported on crate feature http1 only.
http1 only.Sets whether HTTP1 is required.
Default is false
This is supported on crate feature http1 only.
http1 only.Set whether HTTP/1 connections should support half-closures.
Clients can chose to shutdown their write-side while waiting
for the server to respond. Setting this to true will
prevent closing the connection immediately if read
detects an EOF in the middle of a request.
Default is false.
This is supported on crate feature http1 only.
http1 only.Enables or disables HTTP/1 keep-alive.
Default is true.
This is supported on crate feature http1 only.
http1 only.Set whether HTTP/1 connections will write header names as title case at the socket level.
Note that this setting does not affect HTTP/2.
Default is false.
This is supported on crate feature http1 only.
http1 only.Set whether HTTP/1 connections will write header names as provided at the socket level.
Note that this setting does not affect HTTP/2.
Default is false.
This is supported on crate feature http2 only.
http2 only.Sets whether HTTP2 is required.
Default is false
This is supported on crate feature http2 only.
http2 only.Sets the SETTINGS_INITIAL_WINDOW_SIZE option for HTTP2
stream-level flow control.
Passing None will do nothing.
If not set, hyper will use a default.
pub fn http2_initial_connection_window_size(
&mut self,
sz: impl Into<Option<u32>>
) -> &mut Self
This is supported on crate feature http2 only.
pub fn http2_initial_connection_window_size(
&mut self,
sz: impl Into<Option<u32>>
) -> &mut Self
http2 only.Sets the max connection-level flow control for HTTP2.
Passing None will do nothing.
If not set, hyper will use a default.
This is supported on crate feature http2 only.
http2 only.Sets whether to use an adaptive flow control.
Enabling this will override the limits set in
http2_initial_stream_window_size and
http2_initial_connection_window_size.
This is supported on crate feature http2 only.
http2 only.Sets the maximum frame size to use for HTTP2.
Passing None will do nothing.
If not set, hyper will use a default.
This is supported on crate feature http2 only.
http2 only.Sets the SETTINGS_MAX_CONCURRENT_STREAMS option for HTTP2
connections.
Default is no limit (std::u32::MAX). Passing None will do nothing.
pub fn http2_keep_alive_interval(
&mut self,
interval: impl Into<Option<Duration>>
) -> &mut Self
This is supported on crate feature http2 only.
pub fn http2_keep_alive_interval(
&mut self,
interval: impl Into<Option<Duration>>
) -> &mut Self
http2 only.Sets an interval for HTTP2 Ping frames should be sent to keep a connection alive.
Pass None to disable HTTP2 keep-alive.
Default is currently disabled.
Cargo Feature
Requires the runtime cargo feature to be enabled.
This is supported on crate feature http2 only.
http2 only.Sets a timeout for receiving an acknowledgement of the keep-alive ping.
If the ping is not acknowledged within the timeout, the connection will
be closed. Does nothing if http2_keep_alive_interval is disabled.
Default is 20 seconds.
Cargo Feature
Requires the runtime cargo feature to be enabled.
This is supported on crate feature http1 only.
http1 only.Set the maximum buffer size for the connection.
Default is ~400kb.
Panics
The minimum value allowed is 8192. This method panics if the passed max is less than the minimum.
Aggregates flushes to better support pipelined responses.
Experimental, may have bugs.
Default is false.
Set the executor used to spawn background tasks.
Default uses implicit default (like tokio::spawn).
pub fn serve_connection<S, I, Bd>(
&self,
io: I,
service: S
) -> Connection<I, S, E>ⓘNotable traits for Connection<I, S, E>impl<I, B, S, E> Future for Connection<I, S, E> where
S: HttpService<Body, ResBody = B>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
I: AsyncRead + AsyncWrite + Unpin + 'static,
B: HttpBody + 'static,
B::Error: Into<Box<dyn StdError + Send + Sync>>,
E: ConnStreamExec<S::Future, B>, type Output = Result<()>; where
S: HttpService<Body, ResBody = Bd>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
Bd: HttpBody + 'static,
Bd::Error: Into<Box<dyn StdError + Send + Sync>>,
I: AsyncRead + AsyncWrite + Unpin,
E: ConnStreamExec<S::Future, Bd>,
pub fn serve_connection<S, I, Bd>(
&self,
io: I,
service: S
) -> Connection<I, S, E>ⓘNotable traits for Connection<I, S, E>impl<I, B, S, E> Future for Connection<I, S, E> where
S: HttpService<Body, ResBody = B>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
I: AsyncRead + AsyncWrite + Unpin + 'static,
B: HttpBody + 'static,
B::Error: Into<Box<dyn StdError + Send + Sync>>,
E: ConnStreamExec<S::Future, B>, type Output = Result<()>; where
S: HttpService<Body, ResBody = Bd>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
Bd: HttpBody + 'static,
Bd::Error: Into<Box<dyn StdError + Send + Sync>>,
I: AsyncRead + AsyncWrite + Unpin,
E: ConnStreamExec<S::Future, Bd>,
impl<I, B, S, E> Future for Connection<I, S, E> where
S: HttpService<Body, ResBody = B>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
I: AsyncRead + AsyncWrite + Unpin + 'static,
B: HttpBody + 'static,
B::Error: Into<Box<dyn StdError + Send + Sync>>,
E: ConnStreamExec<S::Future, B>, type Output = Result<()>;Trait Implementations
Auto Trait Implementations
impl<E> RefUnwindSafe for Http<E> where
E: RefUnwindSafe,
impl<E> UnwindSafe for Http<E> where
E: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
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