Function axum::routing::any

source · []
pub fn any<H, T, B>(handler: H) -> MethodRouter<B, Infallible> where
    H: Handler<T, B>,
    B: Send + 'static,
    T: 'static, 
Expand description

Route requests with the given handler regardless of the method.

Example

use axum::{
    routing::any,
    Router,
};

async fn handler() {}

// All requests to `/` will go to `handler`.
let app = Router::new().route("/", any(handler));

Additional methods can still be chained:

use axum::{
    routing::any,
    Router,
};

async fn handler() {}

async fn other_handler() {}

// `POST /` goes to `other_handler`. All other requests go to `handler`
let app = Router::new().route("/", any(handler).post(other_handler));