Trait ResultsIn

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

Source

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.

Implementations on Foreign Types§

Source§

impl<D, T: Timestamp, R> ResultsIn<<T as Timestamp>::Summary> for Vec<(D, T, R)>

Source§

fn results_in(self, step: &T::Summary) -> Self

Implementors§