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
sourceimpl<E> Http<E>
impl<E> Http<E>
sourcepub fn http1_only(&mut self, val: bool) -> &mut Self
pub fn http1_only(&mut self, val: bool) -> &mut Self
Sets whether HTTP1 is required.
Default is false
sourcepub fn http1_half_close(&mut self, val: bool) -> &mut Self
pub fn http1_half_close(&mut self, val: bool) -> &mut 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_keep_alive(&mut self, val: bool) -> &mut Self
pub fn http1_keep_alive(&mut self, val: bool) -> &mut Self
Enables or disables HTTP/1 keep-alive.
Default is true.
sourcepub fn http1_title_case_headers(&mut self, enabled: bool) -> &mut Self
pub fn http1_title_case_headers(&mut self, enabled: bool) -> &mut 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(&mut self, enabled: bool) -> &mut Self
pub fn http1_preserve_header_case(&mut self, enabled: bool) -> &mut 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_header_read_timeout(&mut self, read_timeout: Duration) -> &mut Self
pub fn http1_header_read_timeout(&mut self, read_timeout: Duration) -> &mut Self
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_writev(&mut self, val: bool) -> &mut Self
pub fn http1_writev(&mut self, val: bool) -> &mut 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 max_buf_size(&mut self, max: usize) -> &mut Self
pub fn max_buf_size(&mut self, max: usize) -> &mut Self
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.
sourcepub fn pipeline_flush(&mut self, enabled: bool) -> &mut Self
pub fn pipeline_flush(&mut self, enabled: bool) -> &mut Self
Aggregates flushes to better support pipelined responses.
Experimental, may have bugs.
Default is false.
sourcepub 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
).
sourcepub fn serve_connection<S, I, Bd>(
&self,
io: I,
service: S
) -> Connection<I, S, E>ⓘNotable traits for Connection<I, S, E>impl<I, B, S, E> Future for Connection<I, S, E> where
S: HttpService<Body, ResBody = B>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
I: AsyncRead + AsyncWrite + Unpin + 'static,
B: HttpBody + 'static,
B::Error: Into<Box<dyn StdError + Send + Sync>>,
E: ConnStreamExec<S::Future, B>, type Output = Result<()>;
where
S: HttpService<Body, ResBody = Bd>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
Bd: HttpBody + 'static,
Bd::Error: Into<Box<dyn StdError + Send + Sync>>,
I: AsyncRead + AsyncWrite + Unpin,
E: ConnStreamExec<S::Future, Bd>,
pub fn serve_connection<S, I, Bd>(
&self,
io: I,
service: S
) -> Connection<I, S, E>ⓘNotable traits for Connection<I, S, E>impl<I, B, S, E> Future for Connection<I, S, E> where
S: HttpService<Body, ResBody = B>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
I: AsyncRead + AsyncWrite + Unpin + 'static,
B: HttpBody + 'static,
B::Error: Into<Box<dyn StdError + Send + Sync>>,
E: ConnStreamExec<S::Future, B>, type Output = Result<()>;
where
S: HttpService<Body, ResBody = Bd>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
Bd: HttpBody + 'static,
Bd::Error: Into<Box<dyn StdError + Send + Sync>>,
I: AsyncRead + AsyncWrite + Unpin,
E: ConnStreamExec<S::Future, Bd>,
S: HttpService<Body, ResBody = B>,
S::Error: Into<Box<dyn StdError + Send + Sync>>,
I: AsyncRead + AsyncWrite + Unpin + 'static,
B: HttpBody + 'static,
B::Error: Into<Box<dyn StdError + Send + Sync>>,
E: ConnStreamExec<S::Future, B>, type Output = Result<()>;
Trait Implementations
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more