pub trait ArgEnum: Sized {
const VARIANTS: &'static [&'static str];
fn from_str(input: &str, case_insensitive: bool) -> Result<Self, String>;
}
Expand description
@TODO @release @docs
Associated Constants
const VARIANTS: &'static [&'static str]
const VARIANTS: &'static [&'static str]
@TODO @release @docs