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§

source

fn execute(&self)

Run the unit of execution.

Implementors§