Macro run_app

Source
macro_rules! run_app {
    ( => $($rest:tt)+) => { ... };
    ($name:ident => $($rest:tt)+) => { ... };
    ($name:expr => $($rest:tt)+) => { ... };
}
Expand description

Constructs and run a CommandLine app.

This is equivalent to:

clapi::app!(/*...*/)
    .use_default_suggestions()
    .use_default_help()
    .run()