ArgValue

Trait ArgValue 

Source
pub trait ArgValue {
    // Required method
    fn set_value(&mut self, input: &str) -> Result<(), Box<dyn Error>>;
}

Required Methods§

Source

fn set_value(&mut self, input: &str) -> Result<(), Box<dyn Error>>

Implementors§

Source§

impl<T> ArgValue for T
where T: FromStr, <T as FromStr>::Err: Debug + Error + 'static,