Rust macro crate to automatically generate conversions from variant types into the target enum.
This crate requires Rust 1.15 or above to compile on stable.
```rust
extern crate from_variants;
pub enum Lorem { Str(String), Num(u16), }
fn main() { assert_eq!(Lorem::Num(10), Lorem::from(10)); } ```
You can skip variants to avoid type collisions:
```rust
extern crate from_variants;
pub enum Ipsum { Hello(String),
#[from_variants(skip)]
Goodbye(String),
}
fn main() { asserteq!(Ipsum::Hello("John".tostring()), Ipsum::from("John".to_string())); } ```
#[from_variants(skip)]
to that variant.core::convert::From
, add #[from_variants(no_std)]
at the struct level.