pub fn Any<F: Guard + 'static>(guard: F) -> AnyGuardExpand description
Creates a guard that matches if any added guards match.
ยงExamples
The handler below will be called for either request method GET or POST.
use actix_web::{web, guard, HttpResponse};
web::route()
    .guard(
        guard::Any(guard::Get())
            .or(guard::Post()))
    .to(|| HttpResponse::Ok());