pub struct Resource<S = ()> { /* fields omitted */ }Resource is an entry in route table which corresponds to requested URL.
Resource in turn has at least one route.
Route consists of an object that implements Handler trait (handler)
and list of predicates (objects that implement Predicate trait).
Route uses builder-like pattern for configuration.
During request handling, resource object iterate through all routes
and check all predicates for specific route, if request matches all
predicates route route considered matched and route handler get called.
use actix_web::{App, HttpResponse, http};
fn main() {
let app = App::new()
.resource(
"/", |r| r.method(http::Method::GET).f(|r| HttpResponse::Ok()))
.finish();
}
Create new resource with specified resource definition
Register a new route and return mutable reference to Route object.
Route is used for route configuration, i.e. adding predicates,
setting up handler.
use actix_web::*;
fn main() {
let app = App::new()
.resource("/", |r| {
r.route()
.filter(pred::Any(pred::Get()).or(pred::Put()))
.filter(pred::Header("Content-Type", "text/plain"))
.f(|r| HttpResponse::Ok())
})
.finish();
}
Register a new GET route.
Register a new POST route.
Register a new PUT route.
Register a new DELETE route.
Register a new HEAD route.
Register a new route and add method check to route.
use actix_web::*;
fn index(req: &HttpRequest) -> HttpResponse { unimplemented!() }
App::new().resource("/", |r| r.method(http::Method::GET).f(index));
This is shortcut for:
App::new().resource("/", |r| r.route().filter(pred::Get()).f(index));
Register a new route and add handler object.
use actix_web::*;
fn handler(req: &HttpRequest) -> HttpResponse { unimplemented!() }
App::new().resource("/", |r| r.h(handler));
This is shortcut for:
App::new().resource("/", |r| r.route().h(handler));
Register a new route and add handler function.
use actix_web::*;
fn index(req: &HttpRequest) -> HttpResponse { unimplemented!() }
App::new().resource("/", |r| r.f(index));
This is shortcut for:
App::new().resource("/", |r| r.route().f(index));
Register a new route and add handler.
use actix_web::*;
fn index(req: HttpRequest) -> HttpResponse { unimplemented!() }
App::new().resource("/", |r| r.with(index));
This is shortcut for:
App::new().resource("/", |r| r.route().with(index));
pub fn with_async<T, F, R, I, E>(&mut self, handler: F) where F: Fn(T) -> R + 'static, R: Future<Item = I, Error = E> + 'static, I: Responder + 'static, E: Into<Error> + 'static, T: FromRequest<S> + 'static, | [src] |
Register a new route and add async handler.
use actix_web::*;
use futures::future::Future;
fn index(req: HttpRequest) -> Box<Future<Item=HttpResponse, Error=Error>> {
unimplemented!()
}
App::new().resource("/", |r| r.with_async(index));
This is shortcut for:
App::new().resource("/", |r| r.route().with_async(index));
Register a resource middleware
This is similar to App's middlewares, but
middlewares get invoked on resource level.
Note Middleware::finish() fires right after response get
prepared. It does not wait until body get sent to peer.
🔬 This is a nightly-only experimental API. (try_from)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from)
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (try_from)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from)
🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static