Proc macro derive to generate structs from enum variants.
This is a poor-man's implementation of https://github.com/rust-lang/rfcs/pull/2593.
toml
[dependencies]
enum_variant_type = "0.3.1"
```rust,edition2018 use enumvarianttype::EnumVariantType;
pub enum MyEnum { /// Unit variant. #[evt(derive(Clone, Copy, Debug, PartialEq))] Unit, /// Tuple variant. #[evt(derive(Debug, PartialEq))] Tuple(u32, u64), /// Struct variant. #[evt(derive(Debug))] Struct { field0: u32, field1: u64 }, /// Skipped variant. #[evt(skip)] Skipped, }
// Now you can do the following: use core::convert::TryFrom; let unit: Unit = Unit::tryfrom(MyEnum::Unit).unwrap(); let tuple: Tuple = Tuple::tryfrom(MyEnum::Tuple(12, 34)).unwrap(); let named: Struct = Struct::tryfrom(MyEnum::Struct { field0: 12, field_1: 34, }) .unwrap();
let enumunit = MyEnum::from(unit); let enumtuple = MyEnum::from(tuple); let enum_struct = MyEnum::from(named);
// If the enum variant doesn't match the variant type, then the original variant is returned in
// the Result
's Err
variant.
asserteq!(Err(MyEnum::Unit), Tuple::tryfrom(MyEnum::Unit));
```
```rust,edition2018 use core::convert::TryFrom;
/// Unit variant.
pub struct Unit;
/// Tuple variant.
pub struct Tuple(pub u32, pub u64);
/// Struct variant.
pub struct Struct { pub field0: u32, pub field1: u64, }
impl From
impl TryFrom
impl From
impl TryFrom
impl From
impl TryFrom
# ```
evt
attribute on enum:#[evt(derive(Clone, Copy))]
: Derives Clone
, Copy
on every variant.#[evt(module = "module1")]
: Generated structs are placed into mod module1 { ... }
.#[evt(implement_marker_traits(MarkerTrait1))]
: Generated structs all impl MarkerTrait1
.Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.