pub trait Runnable { // Required method fn run(&self) -> Result<()>; }
A root command that can be run standalone. The launcher calls run after parsing arguments when no subcommands are registered.
run