Struct Http

Source
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§

Source§

impl Http

Source

pub fn new() -> Http

Creates a new instance of the HTTP protocol, ready to spawn a server or start accepting connections.

Source§

impl<E> Http<E>

Source

pub fn http1_only(&mut self, val: bool) -> &mut Http<E>

Sets whether HTTP1 is required.

Default is false

Source

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 false will automatically close any connection immediately if read detects an EOF.

Default is true.

Source

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.

Default is true.

Source

pub fn http2_only(&mut self, val: bool) -> &mut Http<E>

Sets whether HTTP2 is required.

Default is false

Source

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.

Default is 65,535

Source

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

Default is 65,535

Source

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 (None).

Source

pub fn keep_alive(&mut self, val: bool) -> &mut Http<E>

Enables or disables HTTP keep-alive.

Default is true.

Source

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.

Source

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.

Source

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).

Source

pub fn serve_connection<S, I, Bd>( &self, io: I, service: S, ) -> Connection<I, S, E>
where S: Service<ReqBody = Body, ResBody = Bd>, <S as Service>::Error: Into<Box<dyn Error + Send + Sync>>, Bd: Payload, I: AsyncRead + AsyncWrite, E: H2Exec<<S as Service>::Future, Bd>,

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);

let fut = conn.map_err(|e| {
    eprintln!("server connection error: {}", e);
});

hyper::rt::spawn(fut);
Source

pub fn serve_addr<S, Bd>( &self, addr: &SocketAddr, make_service: S, ) -> Result<Serve<AddrIncoming, S, E>, Error>
where S: MakeServiceRef<AddrStream, ReqBody = Body, ResBody = Bd>, <S as MakeServiceRef<AddrStream>>::Error: Into<Box<dyn Error + Send + Sync>>, Bd: Payload, E: H2Exec<<<S as MakeServiceRef<AddrStream>>::Service as Service>::Future, Bd>,

Bind the provided addr with the default Handle and return Serve.

This method will bind the addr provided with a new TCP listener ready to accept connections. Each connection will be processed with the make_service object provided, creating a new service per connection.

Source

pub fn serve_addr_handle<S, Bd>( &self, addr: &SocketAddr, handle: &Handle, make_service: S, ) -> Result<Serve<AddrIncoming, S, E>, Error>
where S: MakeServiceRef<AddrStream, ReqBody = Body, ResBody = Bd>, <S as MakeServiceRef<AddrStream>>::Error: Into<Box<dyn Error + Send + Sync>>, Bd: Payload, E: H2Exec<<<S as MakeServiceRef<AddrStream>>::Service as Service>::Future, Bd>,

Bind the provided addr with the Handle and return a Serve

This method will bind the addr provided with a new TCP listener ready to accept connections. Each connection will be processed with the make_service object provided, creating a new service per connection.

Source

pub fn serve_incoming<I, S, Bd>( &self, incoming: I, make_service: S, ) -> Serve<I, S, E>
where I: Stream, <I as Stream>::Error: Into<Box<dyn Error + Send + Sync>>, <I as Stream>::Item: AsyncRead + AsyncWrite, S: MakeServiceRef<<I as Stream>::Item, ReqBody = Body, ResBody = Bd>, <S as MakeServiceRef<<I as Stream>::Item>>::Error: Into<Box<dyn Error + Send + Sync>>, Bd: Payload, E: H2Exec<<<S as MakeServiceRef<<I as Stream>::Item>>::Service as Service>::Future, Bd>,

Bind the provided stream of incoming IO objects with a MakeService.

Trait Implementations§

Source§

impl<E> Clone for Http<E>
where E: Clone,

Source§

fn clone(&self) -> Http<E>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<E> Debug for Http<E>
where E: Debug,

Source§

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

Formats the value using the given formatter. Read more

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> 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.