(mut o: impl Write, command: impl Command)
| 547 | } |
| 548 | |
| 549 | fn queue<'a>(mut o: impl Write, command: impl Command) -> Result<(), ErrMode<Error<'a>>> { |
| 550 | use crossterm::QueueableCommand; |
| 551 | o.queue(command).map_err(|err| ErrMode::Cut(Error::Stdio(err)))?; |
| 552 | Ok(()) |
| 553 | } |
| 554 | |
| 555 | fn codeblock_begin<'a, 'b>( |
| 556 | mut o: impl Write + 'b, |
no outgoing calls
no test coverage detected