File: missing_repr.rs

package info (click to toggle)
rust-num-enum 0.5.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 348 kB
  • sloc: makefile: 2
file content (7 lines) | stat: -rw-r--r-- 85 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
#[derive(num_enum::IntoPrimitive)]
enum Numbers {
    Zero,
    One,
}

fn main() {}