Struct actix_web::dev::Resource[][src]

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();
}

Methods

impl<S> Resource<S>
[src]

Create new resource with specified resource definition

Set resource name

Resource definition

impl<S: 'static> Resource<S>
[src]

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));

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.

Auto Trait Implementations

impl<S = ()> !Send for Resource<S>

impl<S = ()> !Sync for Resource<S>