[−][src]Struct commander_rust::Application
Represents an application.
Application is what? Application is generated from your code.
If you use #[command], application will get a Command.
If you use #[options], application will get a Options.
If you write descriptions in your Cargo.toml, application will get a desc.
If you write version in your Cargo.toml, application will get a ver.
For most of the time, you will use all of them.
And we offer a way to get the only application of your CLI.
Using commander_rust::run!()(instead of commander_rust::run(), it's a proc_macro) to get it.
Note
It's generated by commander_rust, and it should be readonly.
Fields
name: Stringdesc: Stringcmds: Vec<Command>opts: Vec<Options>Methods
impl Application[src]
pub fn contains_key(&self, idx: &str) -> bool[src]
Trait Implementations
Auto Trait Implementations
impl Send for Application
impl Sync for Application
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,