pub trait QueueableCommand {
    // Required method
    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§

source

fn queue(&mut self, command: impl Command) -> Result<&mut Self>

Queues the given command for further execution.

Implementors§