pub trait ResultsIn<TS> {
// Required method
fn results_in(self, step: &TS) -> Self;
}Expand description
A container that can advance timestamps by a summary TS.
Required Methods§
Sourcefn results_in(self, step: &TS) -> Self
fn results_in(self, step: &TS) -> Self
Advance times in the container by step.
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.