How to hide options from StructOpt usage output?

Is there a way to create options which don't appear in the usage output from StructOpt?

SOLVED: How to hide StructOpt command line option:

// Show a debug window (not implemented in logtail)
/// (Not implemented in logtail).
#[structopt(short, long, hidden = true)]
pub debug_window: bool,

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.