pub trait ChainedCommand {
type Arg;
type Into;
// Required method
fn chain(self, arg: Self::Arg) -> Self::Into;
}
Expand description
A trait for commands that be chained into another.
pub trait ChainedCommand {
type Arg;
type Into;
// Required method
fn chain(self, arg: Self::Arg) -> Self::Into;
}
A trait for commands that be chained into another.