pub trait ChainedCommand {
    type Arg;
    type Into;
    fn chain(self, arg: Self::Arg) -> Self::Into;
}
Expand description

A trait for commands that be chained into another.

Associated Types

Type of the argument to pass with the command for chaining.

Type of the command after being chained.

Required methods

Chain this command into another.

Implementors