You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Title. Structopt 0.3.0 errors out with methods are not allowed for skipped fields if skipped fields have doc comments, but only multi-line ones.
Repro:
#[derive(StructOpt)]structExample{/// This does an internal thing./// Run-on sentence explanation.#[structopt(skip)]works:String,/// This does another internal thing.////// # IMPORTANT NOTE#[structopt(skip)]fails:String,}
The text was updated successfully, but these errors were encountered:
TeXitoi
added
the
bug
This is a BUG. The fix may be released in a patch version even if considered breaking
label
Aug 31, 2019
Title. Structopt 0.3.0 errors out with
methods are not allowed for skipped fields
if skipped fields have doc comments, but only multi-line ones.Repro:
The text was updated successfully, but these errors were encountered: