[][src]Struct izanami::h1::H1

pub struct H1 { /* fields omitted */ }

A builder for configuration H1 connections.

Methods

impl H1[src]

pub fn new() -> Self[src]

Creates a new H1 with the default configuration.

pub fn half_close(&mut self, enabled: bool) -> &mut Self[src]

Sets whether the connection should support half-closures.

This method corresponds to http1_half_close.

The default value is true.

pub fn writev(&mut self, enabled: bool) -> &mut Self[src]

Sets whether the connection should try to use vectored writers.

This method corresponds to http1_writev.

The default value is true.

pub fn keep_alive(&mut self, enabled: bool) -> &mut Self[src]

Sets whether to enable HTTP keep-alive.

The default value is true.

pub fn max_buf_size(&mut self, amt: usize) -> &mut Self[src]

Sets the maximum buffer size for this connection.

pub fn serve<I, S>(&self, stream: I, service: S) -> H1Connection<I, S> where
    I: AsyncRead + AsyncWrite + 'static,
    S: HttpService<RequestBody> + 'static,
    S::ResponseBody: HttpUpgrade<RewindIo<I>> + Send + 'static,
    <S::ResponseBody as HttpBody>::Data: Send,
    <S::ResponseBody as HttpBody>::Error: Into<Box<dyn Error + Send + Sync + 'static>>,
    <S::ResponseBody as HttpUpgrade<RewindIo<I>>>::Error: Into<Box<dyn Error + Send + Sync + 'static>>,
    S::Error: Into<Box<dyn Error + Send + Sync + 'static>>, 
[src]

Build an H1Connection using the current configuration.

Trait Implementations

impl Default for H1[src]

impl Clone for H1[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for H1[src]

Auto Trait Implementations

impl Send for H1

impl Sync for H1

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Erased for T