Skip to main content

Routes

Type Alias Routes 

Source
pub type Routes = Vec<(&'static str, Box<dyn Fn() -> Box<dyn Controller> + Send + Sync>)>;
Expand description

A list of (mount, controller-factory) pairs — the route-registration shape the app_routes! macro builds when wiring controllers into a router.

Aliased Type§

pub struct Routes { /* private fields */ }