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.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".