pub trait Executor {
type Command: Command;
type Error: Debug;
}Expand description
A base trait for all executors
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".