clap 3.0.0-beta.3

A simple to use, efficient, and full-featured Command Line Argument Parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug, Copy, Clone, PartialEq)]
pub(crate) enum ColorChoice {
    Auto,
    Always,
    Never,
}

#[derive(Debug)]
pub(crate) enum Color {
    Green,
    Yellow,
    Red,
}