A library to quickly build full-featured REPLs supported by CLAP and readline (provided via rustyline)
Complete documentation is available at https://clapcmd.gitlab.io/clapcmd/clap_cmd/index.html
value_parsers
(i.e. a list of valid values)ValueHint::FilePath
)value_parsers
at runtimeget_async_writer()
A minimal example showing a basic REPL is as follows:
```rust use clapcmd::{ArgMatches, ClapCmd, ClapCmdResult, Command};
fn doping(: &mut ClapCmd, _: ArgMatches) -> ClapCmdResult { println!("pong"); Ok(()) }
fn main() { let mut cmd = ClapCmd::default(); cmd.command( doping, Command::new("ping").about("do a ping") ); cmd.runloop(); } ```
To pass state or persistent information to callbacks, provide a State
class like so.
The State
class must implement Clone
and Default
traits, and can be accessed via
the get_state()
and set_state()
methods on the ClapCmd
reference passed into the
callback.
```rust use clapcmd::{ArgMatches, ClapCmd, ClapCmdResult, Command};
struct State { counter: u32, }
fn docount(cmd: &mut ClapCmd
fn main() {
let mut cmd = ClapCmd::