chore: hides ArgSettings in docs

This commit is contained in:
Kevin K 2016-02-19 00:09:10 -05:00
parent 3c8db0e9be
commit a834ae6990

View file

@ -44,6 +44,7 @@ impl Default for ArgFlags {
/// Various settings that apply to arguments and may be set, unset, and checked via getter/setter
/// methods `Arg::set`, `Arg::unset`, and `Arg::is_set`
#[derive(Debug, PartialEq, Copy, Clone)]
#[doc(hidden)]
pub enum ArgSettings {
/// The argument must be used
Required,