Keep the handle to reth's stdout in order to read from it. Caution: if the stdout handle isn't used, this can end up blocking.
(mut self)
| 419 | /// |
| 420 | /// Caution: if the stdout handle isn't used, this can end up blocking. |
| 421 | pub const fn keep_stdout(mut self) -> Self { |
| 422 | self.keep_stdout = true; |
| 423 | self |
| 424 | } |
| 425 | |
| 426 | /// Adds an argument to pass to `reth`. |
| 427 | /// |