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

Trait for the execution counter

Required Methods§

source

fn executions(&self) -> &usize

The executions counter

source

fn executions_mut(&mut self) -> &mut usize

The executions counter (mutable)

Implementors§

source§

impl<I, C, R, SC> HasExecutions for StdState<I, C, R, SC>