Trait forge::cmd::Cmd[][src]

pub trait Cmd: StructOpt + Sized {
    type Output;
    fn run(self) -> Result<Self::Output>;
}
Expand description

Common trait for all cli commands

Associated Types

Required methods

Implementors