Module routing

Module routing 

Source

Structs§

MethodRouter
A light wrapper around axum’s MethodRouter (or ApiMethodRouter if the aide feature is enabled).

Functions§

delete
Route delete requests to the given handler. See axum::routing::delete for more details.
delete_with
Route delete requests to the given handler. See axum::routing::delete for more details.
get
Route get requests to the given handler. See axum::routing::get for more details.
get_with
Route get requests to the given handler. See axum::routing::get for more details.
head
Route head requests to the given handler. See axum::routing::head for more details.
head_with
Route head requests to the given handler. See axum::routing::head for more details.
options
Route options requests to the given handler. See axum::routing::options for more details.
options_with
Route options requests to the given handler. See axum::routing::options for more details.
patch
Route patch requests to the given handler. See axum::routing::patch for more details.
patch_with
Route patch requests to the given handler. See axum::routing::patch for more details.
post
Route post requests to the given handler. See axum::routing::post for more details.
post_with
Route post requests to the given handler. See axum::routing::post for more details.
put
Route put requests to the given handler. See axum::routing::put for more details.
put_with
Route put requests to the given handler. See axum::routing::put for more details.
trace
Route trace requests to the given handler. See axum::routing::trace for more details.
trace_with
Route trace requests to the given handler. See axum::routing::trace for more details.