Expand description
Procedural macros for the Aro web framework.
Provides HTTP method attribute macros (#[get("/path")], #[post("/path")], etc.)
and the AroEntity derive macro for reducing per-entity boilerplate.
Attribute Macros§
- delete
- Attach a
DELETEroute to a handler function. - get
- Attach a
GETroute to a handler function. - patch
- Attach a
PATCHroute to a handler function. - post
- Attach a
POSTroute to a handler function. - put
- Attach a
PUTroute to a handler function.
Derive Macros§
- AroEntity
- Derive macro to generate Aro entity trait implementations.