* @return File descriptor representing the parent side (i.e., write * side) of this subprocess' stderr pipe or None if no pipe was * requested. */
| 261 | * requested. |
| 262 | */ |
| 263 | Option<int_fd> err() const |
| 264 | { |
| 265 | return data->err; |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Exit status of this subprocess captured as a Future (completed |