pub fn parse_required_arg<T>( args: &[String], index: usize, name: &'static str, ) -> Result<T, CommandParseError>where T: FromStr,
Parse a required argument at the given index.