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

@TODO @release @docs

Required methods

@TODO @release @docs

Implementors