Struct Http1Builder
pub struct Http1Builder<'a> { /* private fields */ }
Expand description
Http1 part of builder.
Implementations§
§impl Http1Builder<'_>
impl Http1Builder<'_>
pub fn http2(&mut self) -> Http2Builder<'_>
pub fn http2(&mut self) -> Http2Builder<'_>
Http2 configuration.
pub fn auto_date_header(&mut self, enabled: bool) -> &mut Http1Builder<'_>
pub fn auto_date_header(&mut self, enabled: bool) -> &mut Http1Builder<'_>
Set whether the date
header should be included in HTTP responses.
Note that including the date
header is recommended by RFC 7231.
Default is true.
pub fn half_close(&mut self, val: bool) -> &mut Http1Builder<'_>
pub fn half_close(&mut self, val: bool) -> &mut Http1Builder<'_>
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 keep_alive(&mut self, val: bool) -> &mut Http1Builder<'_>
pub fn keep_alive(&mut self, val: bool) -> &mut Http1Builder<'_>
Enables or disables HTTP/1 keep-alive.
Default is true.
pub fn title_case_headers(&mut self, enabled: bool) -> &mut Http1Builder<'_>
pub fn title_case_headers(&mut self, enabled: bool) -> &mut Http1Builder<'_>
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 ignore_invalid_headers(&mut self, enabled: bool) -> &mut Http1Builder<'_>
pub fn ignore_invalid_headers(&mut self, enabled: bool) -> &mut Http1Builder<'_>
Set whether HTTP/1 connections will silently ignored malformed header lines.
If this is enabled and a header line does not start with a valid header name, or does not include a colon at all, the line will be silently ignored and no error will be reported.
Default is false.
pub fn max_headers(&mut self, val: usize) -> &mut Http1Builder<'_>
pub fn max_headers(&mut self, val: usize) -> &mut Http1Builder<'_>
Set the maximum number of headers.
When a request is received, the parser will reserve a buffer to store headers for optimal performance.
If server receives more headers than the buffer size, it responds to the client with “431 Request Header Fields Too Large”.
The headers is allocated on the stack by default, which has higher performance. After setting this value, headers will be allocated in heap memory, that is, heap memory allocation will occur for each request, and there will be a performance drop of about 5%.
Note that this setting does not affect HTTP/2.
Default is 100.
pub fn header_read_timeout(
&mut self,
read_timeout: Duration,
) -> &mut Http1Builder<'_>
pub fn header_read_timeout( &mut self, read_timeout: Duration, ) -> &mut Http1Builder<'_>
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 currently 30 seconds, but do not depend on that.
pub fn writev(&mut self, val: bool) -> &mut Http1Builder<'_>
pub fn writev(&mut self, val: bool) -> &mut Http1Builder<'_>
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 rama-http-core will try to guess which
mode to use
pub fn max_buf_size(&mut self, max: usize) -> &mut Http1Builder<'_>
pub fn max_buf_size(&mut self, max: usize) -> &mut Http1Builder<'_>
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 Http1Builder<'_>
pub fn pipeline_flush(&mut self, enabled: bool) -> &mut Http1Builder<'_>
Aggregates flushes to better support pipelined responses.
Experimental, may have bugs.
Default is false.
pub async fn serve_connection<I, S>(
&self,
io: I,
service: S,
) -> Result<(), Box<dyn Error + Sync + Send>>
pub async fn serve_connection<I, S>( &self, io: I, service: S, ) -> Result<(), Box<dyn Error + Sync + Send>>
Bind a connection together with a [Service
].
pub fn serve_connection_with_upgrades<I, S>(
&self,
io: I,
service: S,
) -> UpgradeableConnection<'_, I, S> ⓘ
pub fn serve_connection_with_upgrades<I, S>( &self, io: I, service: S, ) -> UpgradeableConnection<'_, I, S> ⓘ
Bind a connection together with a [Service
], with the ability to
handle HTTP upgrades. This requires that the IO object implements
Send
.
Auto Trait Implementations§
impl<'a> Freeze for Http1Builder<'a>
impl<'a> RefUnwindSafe for Http1Builder<'a>
impl<'a> Send for Http1Builder<'a>
impl<'a> Sync for Http1Builder<'a>
impl<'a> Unpin for Http1Builder<'a>
impl<'a> !UnwindSafe for Http1Builder<'a>
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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 more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Policy
that returns Action::Follow
only if self
and other
return
Action::Follow
. Read more