Function actix_web::guard::Delete

source ·
pub fn Delete() -> impl Guard
Expand description

Creates a guard that matches the DELETE request method.

§Examples

The route in this example will only respond to DELETE requests.

use actix_web::{guard, web, HttpResponse};

web::route()
    .guard(guard::Delete())
    .to(|| HttpResponse::Ok());