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