Command

Trait Command 

Source
pub trait Command {
    // Required method
    fn command(&self) -> Command;
}
Expand description

A trait representing a particular command

Required Methods§

Source

fn command(&self) -> Command

Generate a spawnable command

Implementors§