Struct rocket_http::hyper::server::Builder
source · 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>) -> Builder<I, E>
pub fn new(incoming: I, protocol: Http<E>) -> Builder<I, E>
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) -> Builder<I, E>
pub fn http1_keepalive(self, val: bool) -> Builder<I, E>
Sets whether to use keep-alive for HTTP/1 connections.
Default is true
.
sourcepub fn http1_half_close(self, val: bool) -> Builder<I, E>
pub fn http1_half_close(self, val: bool) -> Builder<I, E>
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) -> Builder<I, E>
pub fn http1_max_buf_size(self, val: usize) -> Builder<I, E>
Set the maximum buffer size.
Default is ~ 400kb.
sourcepub fn http1_writev(self, enabled: bool) -> Builder<I, E>
pub fn http1_writev(self, enabled: bool) -> Builder<I, E>
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) -> Builder<I, E>
pub fn http1_title_case_headers(self, val: bool) -> Builder<I, E>
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) -> Builder<I, E>
pub fn http1_preserve_header_case(self, val: bool) -> Builder<I, E>
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_header_read_timeout(self, read_timeout: Duration) -> Builder<I, E>
pub fn http1_header_read_timeout(self, read_timeout: Duration) -> Builder<I, E>
Set a timeout for reading client request headers. If a client does not transmit the entire header within this time, the connection is closed.
Default is None.
sourcepub fn http1_only(self, val: bool) -> Builder<I, E>
pub fn http1_only(self, val: bool) -> Builder<I, E>
Sets whether HTTP/1 is required.
Default is false
.
sourcepub fn http2_only(self, val: bool) -> Builder<I, E>
pub fn http2_only(self, val: bool) -> Builder<I, E>
Sets whether HTTP/2 is required.
Default is false
.
sourcepub fn http2_max_pending_accept_reset_streams(
self,
max: impl Into<Option<usize>>
) -> Builder<I, E>
pub fn http2_max_pending_accept_reset_streams( self, max: impl Into<Option<usize>> ) -> Builder<I, E>
Configures the maximum number of pending reset streams allowed before a GOAWAY will be sent.
This will default to whatever the default in h2 is. As of v0.3.17, it is 20.
See https://github.com/hyperium/hyper/issues/2877 for more information.
sourcepub fn http2_initial_stream_window_size(
self,
sz: impl Into<Option<u32>>
) -> Builder<I, E>
pub fn http2_initial_stream_window_size( self, sz: impl Into<Option<u32>> ) -> Builder<I, E>
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.
sourcepub fn http2_initial_connection_window_size(
self,
sz: impl Into<Option<u32>>
) -> Builder<I, E>
pub fn http2_initial_connection_window_size( self, sz: impl Into<Option<u32>> ) -> Builder<I, E>
Sets the max connection-level flow control for HTTP2
Passing None
will do nothing.
If not set, hyper will use a default.
sourcepub fn http2_adaptive_window(self, enabled: bool) -> Builder<I, E>
pub fn http2_adaptive_window(self, enabled: bool) -> Builder<I, E>
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
.
sourcepub fn http2_max_frame_size(self, sz: impl Into<Option<u32>>) -> Builder<I, E>
pub fn http2_max_frame_size(self, sz: impl Into<Option<u32>>) -> Builder<I, E>
Sets the maximum frame size to use for HTTP2.
Passing None
will do nothing.
If not set, hyper will use a default.
sourcepub fn http2_max_header_list_size(self, max: u32) -> Builder<I, E>
pub fn http2_max_header_list_size(self, max: u32) -> Builder<I, E>
Sets the max size of received header frames.
Default is currently ~16MB, but may change.
sourcepub fn http2_max_concurrent_streams(
self,
max: impl Into<Option<u32>>
) -> Builder<I, E>
pub fn http2_max_concurrent_streams( self, max: impl Into<Option<u32>> ) -> Builder<I, E>
Sets the SETTINGS_MAX_CONCURRENT_STREAMS
option for HTTP2
connections.
Default is no limit (std::u32::MAX
). Passing None
will do nothing.
sourcepub fn http2_keep_alive_interval(
self,
interval: impl Into<Option<Duration>>
) -> Builder<I, E>
pub fn http2_keep_alive_interval( self, interval: impl Into<Option<Duration>> ) -> Builder<I, E>
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.
sourcepub fn http2_keep_alive_timeout(self, timeout: Duration) -> Builder<I, E>
pub fn http2_keep_alive_timeout(self, timeout: Duration) -> Builder<I, E>
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.
sourcepub fn http2_max_send_buf_size(self, max: usize) -> Builder<I, E>
pub fn http2_max_send_buf_size(self, max: usize) -> Builder<I, E>
Set the maximum write buffer size for each HTTP/2 stream.
Default is currently ~400KB, but may change.
Panics
The value must be no larger than u32::MAX
.
sourcepub fn http2_enable_connect_protocol(self) -> Builder<I, E>
pub fn http2_enable_connect_protocol(self) -> Builder<I, E>
Enables the extended CONNECT protocol.
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 as Accept>::Error: Into<Box<dyn Error + Send + Sync, Global>>,
<I as Accept>::Conn: AsyncRead + AsyncWrite + Unpin + Send + 'static,
S: MakeServiceRef<<I as Accept>::Conn, Body, ResBody = B>,
<S as MakeServiceRef<<I as Accept>::Conn, Body>>::Error: Into<Box<dyn Error + Send + Sync, Global>>,
B: Body + 'static,
<B as Body>::Error: Into<Box<dyn Error + Send + Sync, Global>>,
E: NewSvcExec<<I as Accept>::Conn, <S as MakeServiceRef<<I as Accept>::Conn, Body>>::Future, <S as MakeServiceRef<<I as Accept>::Conn, Body>>::Service, E, NoopWatcher> + ConnStreamExec<<<S as MakeServiceRef<<I as Accept>::Conn, Body>>::Service as HttpService<Body>>::Future, B>,
pub fn serve<S, B>(self, make_service: S) -> Server<I, S, E> ⓘwhere I: Accept, <I as Accept>::Error: Into<Box<dyn Error + Send + Sync, Global>>, <I as Accept>::Conn: AsyncRead + AsyncWrite + Unpin + Send + 'static, S: MakeServiceRef<<I as Accept>::Conn, Body, ResBody = B>, <S as MakeServiceRef<<I as Accept>::Conn, Body>>::Error: Into<Box<dyn Error + Send + Sync, Global>>, B: Body + 'static, <B as Body>::Error: Into<Box<dyn Error + Send + Sync, Global>>, E: NewSvcExec<<I as Accept>::Conn, <S as MakeServiceRef<<I as Accept>::Conn, Body>>::Future, <S as MakeServiceRef<<I as Accept>::Conn, Body>>::Service, E, NoopWatcher> + ConnStreamExec<<<S as MakeServiceRef<<I as Accept>::Conn, Body>>::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);
}
source§impl<E> Builder<AddrIncoming, E>
impl<E> Builder<AddrIncoming, E>
sourcepub fn tcp_keepalive(
self,
keepalive: Option<Duration>
) -> Builder<AddrIncoming, E>
pub fn tcp_keepalive( self, keepalive: Option<Duration> ) -> Builder<AddrIncoming, E>
Set the duration to remain idle before sending TCP keepalive probes.
If None
is specified, keepalive is disabled.
sourcepub fn tcp_keepalive_interval(
self,
interval: Option<Duration>
) -> Builder<AddrIncoming, E>
pub fn tcp_keepalive_interval( self, interval: Option<Duration> ) -> Builder<AddrIncoming, E>
Set the duration between two successive TCP keepalive retransmissions, if acknowledgement to the previous keepalive transmission is not received.
sourcepub fn tcp_keepalive_retries(
self,
retries: Option<u32>
) -> Builder<AddrIncoming, E>
pub fn tcp_keepalive_retries( self, retries: Option<u32> ) -> Builder<AddrIncoming, E>
Set the number of retransmissions to be carried out before declaring that remote end is not available.
sourcepub fn tcp_nodelay(self, enabled: bool) -> Builder<AddrIncoming, E>
pub fn tcp_nodelay(self, enabled: bool) -> Builder<AddrIncoming, E>
Set the value of TCP_NODELAY
option for accepted connections.
sourcepub fn tcp_sleep_on_accept_errors(self, val: bool) -> Builder<AddrIncoming, E>
pub fn tcp_sleep_on_accept_errors(self, val: bool) -> Builder<AddrIncoming, E>
Set whether to sleep on accept errors.
A possible scenario is that the process has hit the max open files allowed, and so trying to accept a new connection will fail with EMFILE. In some cases, it’s preferable to just wait for some time, if the application will likely close some files (or connections), and try to accept the connection again. If this option is true, the error will be logged at the error level, since it is still a big deal, and then the listener will sleep for 1 second.
In other cases, hitting the max open files should be treat similarly to being out-of-memory, and simply error (and shutdown). Setting this option to false will allow that.
For more details see AddrIncoming::set_sleep_on_errors
Trait Implementations§
Auto Trait Implementations§
impl<I, E> RefUnwindSafe for Builder<I, E>where E: RefUnwindSafe, I: RefUnwindSafe,
impl<I, E> Send for Builder<I, E>where E: Send, I: Send,
impl<I, E> Sync for Builder<I, E>where E: Sync, I: Sync,
impl<I, E> Unpin for Builder<I, E>where E: Unpin, I: Unpin,
impl<I, E> UnwindSafe for Builder<I, E>where E: UnwindSafe, I: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
source§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere T: ?Sized,
source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightYellow
.
Example
println!("{}", value.bright_yellow());
source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightMagenta
.
Example
println!("{}", value.bright_magenta());
source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightBlack
.
Example
println!("{}", value.on_bright_black());
source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightGreen
.
Example
println!("{}", value.on_bright_green());
source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightYellow
.
Example
println!("{}", value.on_bright_yellow());
source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightBlue
.
Example
println!("{}", value.on_bright_blue());
source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightMagenta
.
Example
println!("{}", value.on_bright_magenta());
source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightCyan
.
Example
println!("{}", value.on_bright_cyan());
source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightWhite
.
Example
println!("{}", value.on_bright_white());
source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
source§fn underline(&self) -> Painted<&T>
fn underline(&self) -> Painted<&T>
Returns self
with the
attr()
set to
Attribute::Underline
.
Example
println!("{}", value.underline());
source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Returns self
with the
attr()
set to
Attribute::RapidBlink
.
Example
println!("{}", value.rapid_blink());
source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);