pub trait ActiveProcess {
type Input;
// Required method
fn output_from(&mut self, input: Self::Input) -> Result<String>;
}pub trait ActiveProcess {
type Input;
// Required method
fn output_from(&mut self, input: Self::Input) -> Result<String>;
}