[][src]Struct commander_core::Application

pub struct Application {
    pub name: String,
    pub desc: String,
    pub cmds: Vec<Command>,
    pub opts: Vec<Options>,
    pub direct_args: Vec<Argument>,
}

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>direct_args: Vec<Argument>

Methods

impl Application[src]

pub fn contains_key(&self, idx: &str) -> bool[src]

Trait Implementations

impl Debug for Application[src]

Auto Trait Implementations

impl Send for Application

impl Sync for Application

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]