Expand description
Defines the Gotham Router and supporting types.
Re-exports
pub use builder::build_router;pub use builder::build_simple_router;
Modules
- Defines a builder API for constructing a
Router. - Defines
Routerfunctionality which acts on theResponse - Defines types that support individual application routes.
- Defines a hierarchial
Treewith subtrees ofNode.
Structs
- The error type used for a non-matching route, as returned by
RouteMatcher::is_match. Multiple values of this type can be combined by matchers that are wrapping other matchers, using theintersection/unionmethods. The data within is used by theRouterto create aResponsewhen no routes were successfully matched. - Responsible for dispatching HTTP requests to defined routes, and responding with appropriate error codes when a valid
Routeis unable to be determined or the dispatch cannot be performed.