rocket_codegen 0.5.1

Procedural macros for the Rocket web framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[macro_use] extern crate rocket;

#[get("/<_>")]
fn i0() {}

#[get("/c?<_>")]
fn i1() {}

#[post("/d", data = "<_>")]
fn i2() {}

fn main() {  }