(&mut self)
| 176 | } |
| 177 | |
| 178 | fn run_get_string(&mut self) -> Result<String> { |
| 179 | let mut s = String::new(); |
| 180 | let mut o = self.run_get_output()?; |
| 181 | o.read_to_string(&mut s)?; |
| 182 | Ok(s) |
| 183 | } |
| 184 | |
| 185 | /// Synchronously execute the child, and parse its stdout as JSON. |
| 186 | fn run_and_parse_json<T: serde::de::DeserializeOwned>(&mut self) -> Result<T> { |
nothing calls this directly
no test coverage detected