pub trait Executable {
// Required method
fn execute(&self);
}Expand description
Encapsulates a block of execution which may be run zero-or-more times.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".