Skip to main content

StepStrategy

Trait StepStrategy 

Source
pub trait StepStrategy: Send + Sync {
    // Required method
    fn next(&mut self) -> usize;
}
Expand description

A sequence of budgets used to relax a rule between passes.

Required Methods§

Source

fn next(&mut self) -> usize

The next value of the sequence.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§