2 releases
0.1.1 | Apr 28, 2023 |
---|---|
0.1.0 | Apr 28, 2023 |
#945 in Procedural macros
21 downloads per month
6KB
68 lines
cocoa-purity
cocoa-purity is a collection of the useful procedural macros.
P.S. named after the beautiful cat Cocoa
Example
map_enum
use cocoa_purity::map_enum;
#[derive(Debug)]
pub enum Quirk {
AbilityToSleep,
Nothing,
}
#[map_enum(Quirk)]
pub enum Character {
Nero = AbilityToSleep,
Custom { name: &'static str } = Nothing
}
let nero = Character::Nero;
let custom = Character::Custom { name: "Friend" };
let nero_quirk: Quirk = nero.into();
let custom_quirk: Quirk = custom.into();
dbg!(nero_quirk, custom_quirk);
Dependencies
~295–750KB
~17K SLoC