rocket_codegen 0.4.2

Procedural macros for the Rocket web framework.
Documentation
1
2
3
4
5
6
7
8
9
10
// #[post("/<_name>?<_query>", format = "application/json", data = "<user>", rank = 2)]
// fn get(
//     _name: &RawStr,
//     _query: User,
//     user: Form<User>,
//     _cookies: Cookies
// ) -> String {
//     format!("{}:{}", user.name, user.nickname)
// }