pub fn parse_any(
    command_line: &Vec<&str>,
    specs: Vec<&CliSpec>
) -> Result<(usize, CliParsed), ParserError>
Expand description

Parsers the given command line based on the given specs and returns the result.
In case of invalid input or none of the provided specs do not match the command line, an error will be returned.