pub struct SchemaCmd {Show 14 fields
pub subcommands: IndexMap<String, SchemaCmd>,
pub args: Vec<Arg>,
pub flags: Vec<Flag>,
pub hide: bool,
pub subcommand_required: bool,
pub help: Option<String>,
pub long_help: Option<String>,
pub name: String,
pub aliases: Vec<String>,
pub hidden_aliases: Vec<String>,
pub before_help: Option<String>,
pub before_long_help: Option<String>,
pub after_help: Option<String>,
pub after_long_help: Option<String>,
}Fields§
§subcommands: IndexMap<String, SchemaCmd>§args: Vec<Arg>§flags: Vec<Flag>§hide: bool§subcommand_required: bool§help: Option<String>§long_help: Option<String>§name: String§aliases: Vec<String>§before_help: Option<String>§before_long_help: Option<String>§after_help: Option<String>§after_long_help: Option<String>Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for SchemaCmd
impl Send for SchemaCmd
impl Sync for SchemaCmd
impl Unpin for SchemaCmd
impl UnwindSafe for SchemaCmd
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more