pub trait Timestamp: Clone + Eq + PartialOrder + Debug + Send + Any + Data + Hash + Ord {
type Summary: PathSummary<Self> + 'static;
// Required method
fn minimum() -> Self;
}
Expand description
A composite trait for types that serve as timestamps in timely dataflow.
Required Associated Types§
sourcetype Summary: PathSummary<Self> + 'static
type Summary: PathSummary<Self> + 'static
A type summarizing action on a timestamp along a dataflow path.