(&mut self)
| 178 | } |
| 179 | |
| 180 | pub fn flush_output(&mut self) -> result::Result<(), io::Error> { |
| 181 | if let Some(out) = self.out.as_mut() { |
| 182 | out.flush()?; |
| 183 | } |
| 184 | Ok(()) |
| 185 | } |
| 186 | |
| 187 | fn is_dlab_set(&self) -> bool { |
| 188 | (self.line_control & LCR_DLAB_BIT) != 0 |
no test coverage detected