rocket_codegen 0.5.1

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

fn main() {
    let _ = catchers![a b];
    let _ = catchers![];
    let _ = catchers![a::, ];
    let _ = catchers![a::];
}