[][src]Function roa_router::trace

pub fn trace<S>(endpoint: impl for<'a> Endpoint<'a, S>) -> Dispatcher<S>

Function to construct dispatcher with Method::TRACE and an endpoint.

You can use it as follow:

use roa_core::{App, Context, Result};
use roa_router::trace;

async fn end(ctx: &mut Context<()>) -> Result {
    Ok(())
}

let app = App::new(()).end(trace(end));