clap::parser::matches::arg_matches::RawValues

How do I get my arg value from RawValues?

Actually, since it's an iterator, I think this works

let domain_name_raw = matches.get_raw("domain-name").unwrap().next().unwrap();

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.