We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#![deny(missing_docs, missing_debug_implementations, missing_copy_implementations, trivial_casts, trivial_numeric_casts, unsafe_code, unstable_features, unused_import_braces, unused_qualifications)] #[macro_use] extern crate structopt; /// Program description #[derive(StructOpt, Debug, Clone, Copy)] #[structopt(name = "program")] pub struct Opt { /// Activate recursive mode. #[structopt(short = "r", long = "recursive")] recursive: bool, }
It doesn't compile, and with RLS I can see that structopt::clap::App<'a, 'a> lacks a documentation.
structopt::clap::App<'a, 'a>
The text was updated successfully, but these errors were encountered:
779695e
I will publish a new release once #71 is merged (hopefully before monday).
Sorry, something went wrong.
Fix compilation with #![deny(missig_docs]
#![deny(missig_docs]
7251a0a
fix #74
v0.2.4 published.
No branches or pull requests
It doesn't compile, and with RLS I can see that
structopt::clap::App<'a, 'a>
lacks a documentation.The text was updated successfully, but these errors were encountered: