Trait rocket::http::hyper::Handler [−][src]
pub trait Handler: Sync + Send {
fn handle(&'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) { ... }
}
Expand description
A handler that can handle incoming requests for a server.
Required methods
Provided methods
fn check_continue(&self, (&Method, &RequestUri, &Headers)) -> StatusCode
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)
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)
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)