restructed 0.2.2

Quickly derive subsets of your structs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// use restructed::Models;

// #[derive(Models)]
// #[clone(UserClone, derive(Clone))]
// struct User {
//     /// This should be omitted
//     id: i32,
//     /// This shouldn't be omitted
//     display_name: String,
//     bio: String,
//     password: String,
// }