pub trait HasExecutions {
    fn executions(&self) -> &usize;
    fn executions_mut(&mut self) -> &mut usize;
}
Expand description

Trait for the execution counter

Required Methods

The executions counter

The executions counter (mutable)

Implementors