pub fn validate_command_with_args<I, S>( command: &str, args: I, options: &ValidationOptions, ) -> Result<()>where I: IntoIterator<Item = S>, S: AsRef<str>,
Validate a command and all its arguments.
command
args
options
Returns Ok(()) if all inputs are valid, or an error describing the first invalid input.
Ok(())