1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00

update doc strings

This commit is contained in:
Nikolay Kim 2017-10-15 15:59:26 -07:00
parent f1d6c61c5c
commit fa6bc35dbd

View file

@ -32,11 +32,11 @@ pub trait RouteHandler<S>: 'static {
fn set_prefix(&mut self, _prefix: String) {}
}
/// Actors with ability to handle http requests
/// Actors with ability to handle http requests.
#[allow(unused_variables)]
pub trait Route: Actor {
/// Route shared state. State is shared with all routes within same application and could be
/// accessed with `HttpContext::state()` method.
/// Shared state. State is shared with all routes within same application
/// and could be accessed with `HttpContext::state()` method.
type State;
/// Handle `EXPECT` header. By default respond with `HTTP/1.1 100 Continue`
@ -67,9 +67,10 @@ pub trait Route: Actor {
}
/// Handle incoming request. Route actor can return
/// result immediately with `Reply::reply` or `Reply::with`.
/// result immediately with `Reply::reply`.
/// Actor itself could be returned for handling streaming request/response.
/// In that case `HttpContext::start` and `HttpContext::write` has to be used.
/// In that case `HttpContext::start` and `HttpContext::write` has to be used
/// for writing response.
fn request(req: HttpRequest, payload: Payload, ctx: &mut Self::Context) -> Reply<Self>;
/// This method creates `RouteFactory` for this actor.
@ -99,7 +100,7 @@ impl<A, S> RouteHandler<S> for RouteFactory<A, S>
}
}
/// Simple route handler
/// Fn() route handler
pub(crate)
struct FnHandler<S, R, F>
where F: Fn(HttpRequest, Payload, &S) -> R + 'static,