pub trait AddStep<T = Self>: StepWith<T> {
// Required method
fn add_step(&mut self) -> Self::Output;
}
Expand description
AddStep
is a trait that defines a method to add a step to the current value, replacing
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.