Struct Http
pub struct Http<E = Exec> { /* private fields */ }
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§
§impl<E> Http<E>
impl<E> Http<E>
pub fn http1_only(&mut self, val: bool) -> &mut Http<E>
pub fn http1_only(&mut self, val: bool) -> &mut Http<E>
Sets whether HTTP1 is required.
Default is false
pub fn http1_half_close(&mut self, val: bool) -> &mut Http<E>
pub fn http1_half_close(&mut self, val: bool) -> &mut Http<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
.
pub fn http1_keep_alive(&mut self, val: bool) -> &mut Http<E>
pub fn http1_keep_alive(&mut self, val: bool) -> &mut Http<E>
Enables or disables HTTP/1 keep-alive.
Default is true.
pub fn http1_title_case_headers(&mut self, enabled: bool) -> &mut Http<E>
pub fn http1_title_case_headers(&mut self, enabled: bool) -> &mut Http<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.
pub fn http1_preserve_header_case(&mut self, enabled: bool) -> &mut Http<E>
pub fn http1_preserve_header_case(&mut self, enabled: bool) -> &mut Http<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.
pub fn http1_header_read_timeout(
&mut self,
read_timeout: Duration,
) -> &mut Http<E>
pub fn http1_header_read_timeout( &mut self, read_timeout: Duration, ) -> &mut Http<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.
pub fn http1_writev(&mut self, val: bool) -> &mut Http<E>
pub fn http1_writev(&mut self, val: bool) -> &mut Http<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
pub fn http2_only(&mut self, val: bool) -> &mut Http<E>
pub fn http2_only(&mut self, val: bool) -> &mut Http<E>
Sets whether HTTP2 is required.
Default is false
pub fn http2_max_pending_accept_reset_streams(
&mut self,
max: impl Into<Option<usize>>,
) -> &mut Http<E>
pub fn http2_max_pending_accept_reset_streams( &mut self, max: impl Into<Option<usize>>, ) -> &mut Http<E>
Configures the maximum number of pending reset streams allowed before a GOAWAY will be sent.
This will default to the default value set by the h2
crate.
As of v0.3.17, it is 20.
See https://github.com/hyperium/hyper/issues/2877 for more information.
pub fn http2_max_local_error_reset_streams(
&mut self,
max: impl Into<Option<usize>>,
) -> &mut Http<E>
pub fn http2_max_local_error_reset_streams( &mut self, max: impl Into<Option<usize>>, ) -> &mut Http<E>
Configures the maximum number of pending reset streams allowed before a GOAWAY will be sent.
This will default to the default value set by the h2
crate.
As of v0.3.17, it is 20.
See https://github.com/hyperium/hyper/issues/2877 for more information.
pub fn http2_initial_stream_window_size(
&mut self,
sz: impl Into<Option<u32>>,
) -> &mut Http<E>
pub fn http2_initial_stream_window_size( &mut self, sz: impl Into<Option<u32>>, ) -> &mut Http<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.
pub fn http2_initial_connection_window_size(
&mut self,
sz: impl Into<Option<u32>>,
) -> &mut Http<E>
pub fn http2_initial_connection_window_size( &mut self, sz: impl Into<Option<u32>>, ) -> &mut Http<E>
Sets the max connection-level flow control for HTTP2.
Passing None
will do nothing.
If not set, hyper will use a default.
pub fn http2_adaptive_window(&mut self, enabled: bool) -> &mut Http<E>
pub fn http2_adaptive_window(&mut self, enabled: bool) -> &mut Http<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
.
pub fn http2_max_frame_size(
&mut self,
sz: impl Into<Option<u32>>,
) -> &mut Http<E>
pub fn http2_max_frame_size( &mut self, sz: impl Into<Option<u32>>, ) -> &mut Http<E>
Sets the maximum frame size to use for HTTP2.
Passing None
will do nothing.
If not set, hyper will use a default.
pub fn http2_max_concurrent_streams(
&mut self,
max: impl Into<Option<u32>>,
) -> &mut Http<E>
pub fn http2_max_concurrent_streams( &mut self, max: impl Into<Option<u32>>, ) -> &mut Http<E>
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 Http<E>
pub fn http2_keep_alive_interval( &mut self, interval: impl Into<Option<Duration>>, ) -> &mut Http<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.
pub fn http2_keep_alive_timeout(&mut self, timeout: Duration) -> &mut Http<E>
pub fn http2_keep_alive_timeout(&mut self, timeout: Duration) -> &mut Http<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.
pub fn http2_max_send_buf_size(&mut self, max: usize) -> &mut Http<E>
pub fn http2_max_send_buf_size(&mut self, max: usize) -> &mut Http<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
.
pub fn http2_enable_connect_protocol(&mut self) -> &mut Http<E>
pub fn http2_enable_connect_protocol(&mut self) -> &mut Http<E>
Enables the extended CONNECT protocol.
pub fn http2_max_header_list_size(&mut self, max: u32) -> &mut Http<E>
pub fn http2_max_header_list_size(&mut self, max: u32) -> &mut Http<E>
Sets the max size of received header frames.
Default is currently ~16MB, but may change.
pub fn max_buf_size(&mut self, max: usize) -> &mut Http<E>
pub fn max_buf_size(&mut self, max: usize) -> &mut Http<E>
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.
pub fn pipeline_flush(&mut self, enabled: bool) -> &mut Http<E>
pub fn pipeline_flush(&mut self, enabled: bool) -> &mut Http<E>
Aggregates flushes to better support pipelined responses.
Experimental, may have bugs.
Default is false.
pub fn with_executor<E2>(self, exec: E2) -> Http<E2>
pub fn with_executor<E2>(self, exec: E2) -> Http<E2>
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> ⓘ
pub fn serve_connection<S, I, Bd>( &self, io: I, service: S, ) -> Connection<I, S, E> ⓘ
Bind a connection together with a Service
.
This returns a Future that must be polled in order for HTTP to be driven on the connection.
§Example
let http = Http::new();
let conn = http.serve_connection(some_io, some_service);
if let Err(e) = conn.await {
eprintln!("server connection error: {}", e);
}
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for Http<E>where
E: Freeze,
impl<E> RefUnwindSafe for Http<E>where
E: RefUnwindSafe,
impl<E> Send for Http<E>where
E: Send,
impl<E> Sync for Http<E>where
E: Sync,
impl<E> Unpin for Http<E>where
E: Unpin,
impl<E> UnwindSafe for Http<E>where
E: 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§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>
Returns self
with the
fg()
set to
Color::BrightBlack
.
§Example
println!("{}", value.bright_black());
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>
Returns self
with the
fg()
set to
Color::BrightGreen
.
§Example
println!("{}", value.bright_green());
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>
Returns self
with the
fg()
set to
Color::BrightWhite
.
§Example
println!("{}", value.bright_white());
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 clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.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);