Skip to main content

RecordTimes

Trait RecordTimes 

Source
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§

Source

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".

Implementations on Foreign Types§

Source§

impl<D, R> RecordTimes for Column<(D, Timestamp, R)>

Source§

impl<D, R> RecordTimes for Vec<(D, Timestamp, R)>

Implementors§