ngyn_macros 0.5.3

Modular backend framework for web applications
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_use]
extern crate ngyn_macros;

use ngyn_macros::Param;

#[derive(Param)]
struct UserParam {
    id: i32,
    name: String,
}