Implements From
and TryInto
for enums
```rust use deriveenumfrom_into::{EnumFrom, EnumTryInto}; use std::convert::TryInto;
enum Enum1 { A(i32), B, }
assert_eq!( Enum1::from(54i32), Enum1::A(54i32) );
let num: Result
Ignores variants with duplicate type definitions or named fields
```compileerror use deriveenumfrominto::{EnumFrom, EnumTryInto}; use std::convert::TryInto;
enum Enum1 { A(String), B(String), C { something: bool }, }
// Results in compile errors
let enum1: Result
From
can be ignored for variants with #[from_ignore]
TryInto
can also be implemented for references of the enum. Specific variants can be ignored with #[try_into_ignore]
```rust use deriveenumfrom_into::{EnumFrom, EnumTryInto}; use std::convert::TryInto;
enum NumberOrString { Number(f32), #[tryintoignore] String(String) }
let x = NumberOrString::Number(4.); asserteq!(TryInto::<&f32>::tryinto(&x), Ok(&4.));
// This won't compile as cannot TryInto String
// assert!(TryInto::
// TryInto
comes in handy for filter_map
cases
fn filteronlyf32s(iter: impl Iterator
// TryInto
returns self
if it does not match
asserteq!(TryInto::
Note that because of the default implementation of TryInto
the following will not compile. There are workarounds with wrapping X in a newtype pattern
```compile_error
enum X { Leaf(i32), Nested(X) } ```