Trait hyper::server::Handler [] [src]

pub trait Handler: Sync + Send {
    fn handle<'a, 'k>(&'a self, Request<'a, 'k>, Response<'a, Fresh>);

    fn check_continue(&self, _: (&Method, &RequestUri, &Headers)) -> StatusCode { ... }
    fn on_connection_start(&self) { ... }
    fn on_connection_end(&self) { ... }
}

A handler that can handle incoming requests for a server.

Required Methods

fn handle<'a, 'k>(&'a self, Request<'a, 'k>, Response<'a, Fresh>)

Receives a Request/Response pair, and should perform some action on them.

This could reading from the request, and writing to the response.

Provided Methods

fn check_continue(&self, _: (&Method, &RequestUri, &Headers)) -> StatusCode

Called when a Request includes a Expect: 100-continue header.

By default, this will always immediately response with a StatusCode::Continue, but can be overridden with custom behavior.

fn on_connection_start(&self)

This is run after a connection is received, on a per-connection basis (not a per-request basis, as a connection with keep-alive may handle multiple requests)

fn on_connection_end(&self)

This is run before a connection is closed, on a per-connection basis (not a per-request basis, as a connection with keep-alive may handle multiple requests)

Implementors