1 2 3 4 5 6 7
pub use super::CalculationStep; use crate::errors::Result; pub trait RangeGenerator { fn next(&mut self) -> Result<CalculationStep>; }