Trait funzzy::cli::Command

source ·
pub trait Command {
    // Required method
    fn execute(&self) -> Result<(), String>;
}
Expand description

§Command interface

Each command from cli should implement this.

Required Methods§

source

fn execute(&self) -> Result<(), String>

Implementors§