[][src]Struct hreq_h1::server::SendResponse

pub struct SendResponse { /* fields omitted */ }

Handle to send a response and body back for a single request.

See module level doc for an example.

Implementations

impl SendResponse[src]

pub async fn send_response(
    self,
    response: Response<()>,
    no_body: bool
) -> Result<SendStream, Error>
[src]

Send a response to a request. Notice that the body is sent separately afterwards.

The lib will infer that there will be no response body if there is a content-length: 0 header or a status code that should not have a body (1xx, 204, 304).

no_body is an alternative way, in addition to headers and status, to inform the library there will be no body to send.

It's an error to send a body when the status or headers indicate there should not be one.

Trait Implementations

impl Debug for SendResponse[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.