Skip to main content

Runnable

Trait Runnable 

Source
pub trait Runnable {
    // Required method
    fn run(&self) -> Result<()>;
}
Expand description

A root command that can be run standalone. The launcher calls run after parsing arguments when no subcommands are registered.

Required Methods§

Source

fn run(&self) -> Result<()>

Implementors§