pub trait Parser: Sized { // Required method fn parse<'a>( it: &mut impl Iterator<Item = Result<&'a str, Utf8Error>> ) -> Result<Self, ArgParseError>; }
Attempts to construct Self from provided arguments.
Self
Parsing errors, see ArgParseCause
ArgParseCause