Hi, I feel stupid for not being able to figure it out but I'm trying something like this:
let args: clap::Argmatches = parse_args();
let matches = match args.try_get_matches() {
Ok(m) => m,
Err(e) => println!("{}", e),
}
This won't work because the return types for both arms don't match but I can't seem to figure out a way for doing this correctly. Can someone help me? I explicitly want to not return the error that may arise.