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

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>

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

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

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Erased for T