pub trait Nail: Clone + Send + Sync + 'static {
    fn spawn(&self, cmd: Command) -> Result<Child, Error>;
}

Required Methods

Spawns an instance of the nail and returns a server::Child.

Implementors