pub struct Builder<I, E = Exec> { /* private fields */ }
Expand description
A builder for a Server
.
Implementations§
Source§impl<I, E> Builder<I, E>
impl<I, E> Builder<I, E>
Sourcepub fn new(incoming: I, protocol: Http_<E>) -> Self
pub fn new(incoming: I, protocol: Http_<E>) -> Self
Start a new builder, wrapping an incoming stream and low-level options.
For a more convenient constructor, see Server::bind
.
Sourcepub fn http1_keepalive(self, val: bool) -> Self
pub fn http1_keepalive(self, val: bool) -> Self
Sets whether to use keep-alive for HTTP/1 connections.
Default is true
.
Sourcepub fn http1_half_close(self, val: bool) -> Self
pub fn http1_half_close(self, val: bool) -> Self
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
.
Sourcepub fn http1_max_buf_size(self, val: usize) -> Self
pub fn http1_max_buf_size(self, val: usize) -> Self
Set the maximum buffer size.
Default is ~ 400kb.
Sourcepub fn http1_writev(self, enabled: bool) -> Self
pub fn http1_writev(self, enabled: bool) -> Self
Set whether HTTP/1 connections should try to use vectored writes, or always flatten into a single buffer.
Note that setting this to false may mean more copies of body data, but may also improve performance when an IO transport doesn’t support vectored writes well, such as most TLS implementations.
Setting this to true will force hyper to use queued strategy which may eliminate unnecessary cloning on some TLS backends
Default is auto
. In this mode hyper will try to guess which
mode to use
Sourcepub fn http1_title_case_headers(self, val: bool) -> Self
pub fn http1_title_case_headers(self, val: bool) -> Self
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.
Sourcepub fn http1_preserve_header_case(self, val: bool) -> Self
pub fn http1_preserve_header_case(self, val: bool) -> Self
Set whether to support preserving original header cases.
Currently, this will record the original cases received, and store them
in a private extension on the Request
. It will also look for and use
such an extension in any provided Response
.
Since the relevant extension is still private, there is no way to interact with the original cases. The only effect this can have now is to forward the cases in a proxy-like fashion.
Note that this setting does not affect HTTP/2.
Default is false.
Sourcepub fn http1_only(self, val: bool) -> Self
pub fn http1_only(self, val: bool) -> Self
Sets whether HTTP/1 is required.
Default is false
.
Sourcepub fn executor<E2>(self, executor: E2) -> Builder<I, E2>
pub fn executor<E2>(self, executor: E2) -> Builder<I, E2>
Sets the Executor
to deal with connection tasks.
Default is tokio::spawn
.
Sourcepub fn serve<S, B>(self, make_service: S) -> Server<I, S, E> ⓘwhere
I: Accept,
I::Error: Into<Box<dyn StdError + Send + Sync>>,
I::Conn: AsyncRead + AsyncWrite + Unpin + Send + 'static,
S: MakeServiceRef<I::Conn, Body, ResBody = B>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
B: HttpBody + 'static,
B::Error: Into<Box<dyn StdError + Send + Sync>>,
E: NewSvcExec<I::Conn, S::Future, S::Service, E, NoopWatcher> + ConnStreamExec<<S::Service as HttpService<Body>>::Future, B>,
pub fn serve<S, B>(self, make_service: S) -> Server<I, S, E> ⓘwhere
I: Accept,
I::Error: Into<Box<dyn StdError + Send + Sync>>,
I::Conn: AsyncRead + AsyncWrite + Unpin + Send + 'static,
S: MakeServiceRef<I::Conn, Body, ResBody = B>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
B: HttpBody + 'static,
B::Error: Into<Box<dyn StdError + Send + Sync>>,
E: NewSvcExec<I::Conn, S::Future, S::Service, E, NoopWatcher> + ConnStreamExec<<S::Service as HttpService<Body>>::Future, B>,
Consume this Builder
, creating a Server
.
§Example
use hyper::{Body, Error, Response, Server};
use hyper::service::{make_service_fn, service_fn};
// Construct our SocketAddr to listen on...
let addr = ([127, 0, 0, 1], 3000).into();
// And a MakeService to handle each connection...
let make_svc = make_service_fn(|_| async {
Ok::<_, Error>(service_fn(|_req| async {
Ok::<_, Error>(Response::new(Body::from("Hello World")))
}))
});
// Then bind and serve...
let server = Server::bind(&addr)
.serve(make_svc);
// Run forever-ish...
if let Err(err) = server.await {
eprintln!("server error: {}", err);
}