Skip to main content

Http1OptionsBuilder

Struct Http1OptionsBuilder 

Source
pub struct Http1OptionsBuilder { /* private fields */ }
Expand description

Builder for Http1Options.

Implementations§

Source§

impl Http1OptionsBuilder

Source

pub fn http09_responses(self, enabled: bool) -> Self

Set the http09_responses field.

Source

pub fn writev(self, writev: Option<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 crate::core: to use queued strategy which may eliminate unnecessary cloning on some TLS backends

Default is auto. In this mode crate::core: will try to guess which mode to use

Source

pub fn max_headers(self, max_headers: usize) -> Self

Set the maximum number of headers.

When a response is received, the parser will reserve a buffer to store headers for optimal performance.

If client receives more headers than the buffer size, the error “message header too large” is returned.

Note that 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 response, and there will be a performance drop of about 5%.

Default is 100.

Source

pub fn read_buf_exact_size(self, sz: Option<usize>) -> Self

Sets the exact size of the read buffer to always use.

Note that setting this option unsets the max_buf_size option.

Default is an adaptive read buffer.

Source

pub fn max_buf_size(self, max: usize) -> Self

Set the maximum buffer size for the connection.

Default is ~400kb.

Note that setting this option unsets the read_exact_buf_size option.

§Panics

The minimum value allowed is 8192. This method panics if the passed max is less than the minimum.

Source

pub fn allow_spaces_after_header_name_in_responses(self, enabled: bool) -> Self

Set whether HTTP/1 connections will accept spaces between header names and the colon that follow them in responses.

You probably don’t need this, here is what RFC 7230 Section 3.2.4. has to say about it:

No whitespace is allowed between the header field-name and colon. In the past, differences in the handling of such whitespace have led to security vulnerabilities in request routing and response handling. A server MUST reject any received request message that contains whitespace between a header field-name and colon with a response code of 400 (Bad Request). A proxy MUST remove any such whitespace from a response message before forwarding the message downstream.

Default is false.

Source

pub fn ignore_invalid_headers_in_responses(self, enabled: bool) -> Self

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.

Source

pub fn allow_obsolete_multiline_headers_in_responses(self, value: bool) -> Self

Set the allow_obsolete_multiline_headers_in_responses field.

Source

pub fn build(self) -> Http1Options

Build the Http1Options instance.

Trait Implementations§

Source§

impl Debug for Http1OptionsBuilder

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more