Trait crossterm::ExecutableCommand[][src]

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

An interface for types that can directly execute commands.

Required methods

Executes the given command directly.

Implementors