[][src]Function simon::opt_by_required

pub fn opt_by_required<F, T, E>(
    short: &str,
    long: &str,
    doc: &str,
    hint: &str,
    f: F
) -> ArgExt<impl Arg<Item = T>> where
    F: Fn(String) -> Result<T, E>,
    E: Clone + Debug + Display,
    T: Display