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.#[from_variants(into)]
at the enum or variant level to get a generated conversion that accepts Into<VariantType>
. In practice, this will only work with types defined in the same crate; otherwise you'll get conflicting impl errors.