#![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.
It doesn't compile, and with RLS I can see that
structopt::clap::App<'a, 'a>lacks a documentation.