pub trait Pool {
// Required methods
fn get(&mut self) -> Result<&mut Child, Error>;
fn join(&mut self) -> Result<(), Error>;
}Expand description
A type that can get child processes on demand
pub trait Pool {
// Required methods
fn get(&mut self) -> Result<&mut Child, Error>;
fn join(&mut self) -> Result<(), Error>;
}A type that can get child processes on demand