pub fn Put() -> impl GuardExpand description
Creates a guard that matches the PUT request method.
ยงExamples
The route in this example will only respond to PUT requests.
use actix_web::{guard, web, HttpResponse};
web::route()
    .guard(guard::Put())
    .to(|| HttpResponse::Ok());