2个不稳定版本
0.2.0 | 2024年3月18日 |
---|---|
0.1.0 | 2023年10月10日 |
#1640 在 过程宏
71 每月下载次数
在 twitch_eventsub 中使用
4KB
58 行
enum_all_variants
用于生成所有枚举变体列表的过程宏。
示例
use enum_all_variants::AllVariants;
#[derive(AllVariants, Debug)]
enum Direction {
Left,
Top,
Right,
Bottom,
}
fn main() {
println!("{:?}", Direction::all_variants());
}
输出
[Left, Top, Right, Bottom]
依赖项
~295–750KB
~18K SLoC