pub trait JcWrapper<T>where T: for<'a> Deserialize<'a>,{ fn parse(&mut self, output_type: CmdOutput) -> Result<T, Box<dyn Error>>; }
Called on a Command.