Add the command line for additional context.
(mut self, cmd: String)
| 203 | |
| 204 | /// Add the command line for additional context. |
| 205 | pub fn set_cmd(mut self, cmd: String) -> Self { |
| 206 | self.cmd = Some(cmd); |
| 207 | self |
| 208 | } |
| 209 | |
| 210 | /// Add the `stdin` for additional context. |
| 211 | pub fn set_stdin(mut self, stdin: Vec<u8>) -> Self { |