enum-helper 0.3.1

Yet another enum helper. Macros that generate common boilerplate for enums.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0277]: the trait bound `Foo: FromStr` is not satisfied
 --> tests/ui/enum_str_impl_from_str_disable_absence.rs:9:19
  |
9 |     let _ = "Bar".parse::<Foo>().unwrap();
  |                   ^^^^^ the trait `FromStr` is not implemented for `Foo`
  |
  = help: the following other types implement trait `FromStr`:
            CString
            IpAddr
            Ipv4Addr
            Ipv6Addr
            NonZero<i128>
            NonZero<i16>
            NonZero<i32>
            NonZero<i64>
          and $N others