[][src]Function kayrx::web::web::method

pub fn method(method: Method) -> Route

Create route and add method guard.

use kayrx::{http, web::{web, App, HttpResponse}};

let app = App::new().service(
    web::resource("/{project_id}")
        .route(web::method(http::Method::GET).to(|| HttpResponse::Ok()))
);

In the above example, one GET route get added:

  • /{project_id}