2 unstable releases
0.2.0 | Aug 23, 2024 |
---|---|
0.1.0 | Aug 23, 2024 |
#11 in #request-id
141 downloads per month
Used in route_match
15KB
380 lines
Route Macros
This is a procedural macro for implementing routing in hyper.
Usage
route! {
match request {
GET /foo/bar => get_fubar(request)
POST /foo/:id => post_foo(request, id)
}
}
This expands to:
{
let method = request.method.clone();
let path: Vec<&str> = request.path.clone().split('/').collect();
if let Some(()) = {
if &method != &http::Method::GET {
None
} else if path.len() != PATH_LENGTH {
None
} else if path[0] != "foo" || path[1] != "bar" {
None
} else {
Some(())
}
} {
get_fubar(request)
} else if let Some(id) = {
if &method != &http::Method::POST {
None
} else if path.len() != PATH_LENGTH {
None
} else if path[0] != "foo" {
None
} else {
let id = path[1];
Some(id)
}
} {
post_foo(request, id)
}
}
Dependencies
~260–710KB
~17K SLoC