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.
```rust,edition2018 use std::convert::TryFrom;
use enumvarianttype::EnumVariantType;
pub enum MyEnum { /// Unit variant. #[evtattrs(derive(Clone, Copy, Debug, PartialEq))] Unit, /// Tuple variant. #[evtattrs(derive(Debug, PartialEq))] Tuple(u32, u64), /// Struct variant. #[evtattrs(derive(Debug))] Struct { field0: u32, field_1: u64, }, }
// Now you can do the following: 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 std::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
# ```
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.