[][src]Function kayrx::web::web::head

pub fn head() -> Route

Create route with HEAD method guard.

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

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

In the above example, one HEAD route get added:

  • /{project_id}