Pause stdin polling (call before suspending TUI for a child process).
(&self)
| 123 | |
| 124 | /// Pause stdin polling (call before suspending TUI for a child process). |
| 125 | pub fn pause(&self) { |
| 126 | self.paused.store(true, Ordering::Relaxed); |
| 127 | } |
| 128 | |
| 129 | /// Resume stdin polling (call after child process exits and TUI resumes). |
| 130 | pub fn resume(&self) { |
no outgoing calls
no test coverage detected