Same as `cmd.spawn_piped()?.read_bytes()` See [`Child::read_bytes()`] for details.
(&self)
| 412 | /// Same as `cmd.spawn_piped()?.read_bytes()` |
| 413 | /// See [`Child::read_bytes()`] for details. |
| 414 | pub fn read_bytes(&self) -> Result<Vec<u8>> { |
| 415 | self.spawn_piped()?.read_bytes() |
| 416 | } |
| 417 | |
| 418 | /// Spawns a child process returning a handle to it. |
| 419 | /// The child inherits both `stdout` and `stderr`. |
nothing calls this directly
no test coverage detected