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