trait RecordTimes {
// Required method
fn for_each_time(&self, f: impl FnMut(Timestamp));
}Expand description
Reads the times of the records a container holds, for LimitProgress.
Required Methods§
Sourcefn for_each_time(&self, f: impl FnMut(Timestamp))
fn for_each_time(&self, f: impl FnMut(Timestamp))
Call f once per record, with that record’s time.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".