It has the same interface as thiserror's #[from] attribute, but it works in no-std.
#[from]
```rust use from_enum::From;
enum MyEnum { String(#[from] String), Int(#[from] i32), } ```