pub trait HasExecutions {
// Required methods
fn executions(&self) -> &u64;
fn executions_mut(&mut self) -> &mut u64;
}
Expand description
Trait for the execution counter
Required Methods§
Sourcefn executions(&self) -> &u64
fn executions(&self) -> &u64
The executions counter
Sourcefn executions_mut(&mut self) -> &mut u64
fn executions_mut(&mut self) -> &mut u64
The executions counter (mutable)