pub trait Command { // Required method fn execute(&self) -> Result<()>; }
Trait implemented by every k2tools subcommand.
Execute the command.
Returns an error if the command fails.