pub struct CommandDef {
pub name: String,
pub description: String,
pub usage: String,
pub flags: Vec<FlagDef>,
pub examples: Vec<ExampleDef>,
pub exit_codes: Vec<ExitCodeDef>,
}Expand description
CLI command definition
Fields§
§name: String§description: String§usage: String§flags: Vec<FlagDef>§examples: Vec<ExampleDef>§exit_codes: Vec<ExitCodeDef>Trait Implementations§
Source§impl Clone for CommandDef
impl Clone for CommandDef
Source§fn clone(&self) -> CommandDef
fn clone(&self) -> CommandDef
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CommandDef
impl Debug for CommandDef
Source§impl<'de> Deserialize<'de> for CommandDef
impl<'de> Deserialize<'de> for CommandDef
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CommandDef
impl RefUnwindSafe for CommandDef
impl Send for CommandDef
impl Sync for CommandDef
impl Unpin for CommandDef
impl UnwindSafe for CommandDef
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