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