Trait meap::parser::HasParam

source ·
pub trait HasParam {
    // Required methods
    fn low_level() -> HasParam;
    fn maybe_hint(&self) -> Option<&str>;
}
Expand description

Determines whether the opt takes a value as an argument

Required Methods§

Implementors§

source§

impl HasParam for No

source§

impl<V: FromStr, T: From<V>> HasParam for YesVia<V, T>