Trait conductor::cmd::CommandBuild [] [src]

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

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

Required Methods

Build all the images associated with this project.

Implementors