How to make clap ignore a specific field in a struct?
I’m building my Rust CLI with clap. I have one struct with all the command line options. This struct is passed through to a lot of functions. Now I would like to add a field to this struct, but not surface this field as a command line argument. I don’t want to pass through an… Read More How to make clap ignore a specific field in a struct?