[][src]Trait clap::ArgEnum

pub trait ArgEnum: Sized {
    const VARIANTS: &'static [&'static str];

    fn from_str(input: &str, case_insensitive: bool) -> Result<Self, String>;
}
[]

@TODO @release @docs

Associated Constants

const VARIANTS: &'static [&'static str][]

@TODO @release @docs

Required methods

fn from_str(input: &str, case_insensitive: bool) -> Result<Self, String>[]

@TODO @release @docs

Implementors