logo
pub fn Trace() -> impl Guard
Expand description

Creates a guard that matches the TRACE request method.

Examples

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

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

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