Trait argonaut::SingleTarget [] [src]

pub trait SingleTarget: Debug {
    fn parse(&mut self, value: &str) -> Result<(), String>;
}

Allows every type that is FromStr to be read from an argument.

Required Methods

Parses the value and updates self with it.

Implementors