Function roa::router::patch

source · []
pub fn patch<S>(endpoint: impl for<'a> Endpoint<'a, S>) -> Dispatcher<S>
This is supported on crate feature router only.
Expand description

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

You can use it as follow:

use roa::{App, Context, Result};
use roa::router::patch;

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

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