| Crates.io | reflectx-macros |
| lib.rs | reflectx-macros |
| version | 0.0.1 |
| created_at | 2025-12-03 19:49:38.112116+00 |
| updated_at | 2025-12-03 19:49:38.112116+00 |
| description | macros for the reflectx crate. |
| homepage | https://www.github.com/aacebo/zinq |
| repository | https://www.github.com/aacebo/zinq |
| max_upload_size | |
| id | 1965165 |
| size | 39,897 |
macros for the reflectx crate.
#[derive(Reflect)]
enum Kind {
Admin,
Moderator,
Basic,
}
#[derive(Reflect)]
struct User {
pub kind: Kind,
pub name: String,
pub password: String,
}