Trait conductor::cmd::CommandStop [] [src]

pub trait CommandStop {
    fn stop<CR>(&self, runner: &CR, ovr: &Override) -> Result<()> where CR: CommandRunner;
}

We implement conductor stop with a trait so we put it in its own module.

Required Methods

Stop all the images associated with a project.

Implementors