1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
use TokenStream;
/// Example:
/// ```
/// #[derive(Debug, potk_macros::EnumCode)]
/// #[enum_code(u8)]
/// pub enum Schema {
/// Model(String), // 0u8
/// Array { len: usize }, // 1u8
/// U8, // 2u8
/// Gene // 3u8
/// }
/// ```
/// Example:
/// ```ignore
/// #[potk::legacy]
/// mod items {
///
/// /// the derive macros from **Base** are set for all children
/// #[derive(Debug, Serialize, Deserialize, ToSchema)]
/// pub struct Base {
/// gene: Gene,
/// is_alive: bool,
/// }
///
/// impl From<&Review> for Base {
/// fn from(value: &Review) -> Self {
/// Self {
/// gene: value.gene,
/// is_alive: value.is_alive(),
/// }
/// }
/// }
///
/// // child 1
/// pub struct ReviewInfo {
/// // gene: Gene,
/// // is_alive: bool,
/// user: Gene,
/// }
///
/// impl From<&Review> for ReviewInfo {
/// fn from(value: &Review) -> Self {
/// Self { user: value.user }
/// }
/// }
///
/// // child 2
/// pub struct EateryReviewInfo {
/// // gene: Gene,
/// // is_alive: bool,
/// user: Option<EateryReviewUserInfo>,
/// }
///
/// impl From<&Review> for EateryReviewInfo {
/// fn from(review: &Review) -> Self {
/// Self { user: None }
/// }
/// }
/// }
/// ```
/// enum_ini is a two way conversion enum `<->` u16
/// default **start** is `0` and default **ty** is `u8`
/// Example:
/// ```
/// #[potk_macros::enum_int(u16)]
/// #[derive(Debug, Default, Clone, Copy)]
/// pub enum ExampleError {
/// #[default]
/// Unknown = 0,
/// UserNotFound,
/// BadPhone,
/// BadStr,
/// }
/// ```
/// perms is for using an array of `u8` for booleans
/// ```ignore
/// pub mod my_perms {
/// potk::perms! {
/// VIEW_USERS, ADD_USERS, EDIT_USERS, DEL_USERS
/// }
/// }
///
/// let mut user_perms = [0u8; 32];
/// assert_eq!(user_perms.perm_get(my_perms::VIEW_USERS), false);
/// user_perms.perm_set(my_perms::VIEW_USERS, true);
/// assert_eq!(user_perms.perm_get(my_perms::VIEW_USERS), true);
/// ```
pub use ident;
pub use err;