Trait crossterm::QueueableCommand[][src]

pub trait QueueableCommand {
    fn queue(&mut self, command: impl Command) -> Result<&mut Self>;
}
Expand description

An interface for types that can queue commands for further execution.

Required methods

Queues the given command for further execution.

Implementors