pub trait Timestamp: Clone + Eq + PartialOrder + Debug + Send + Any + Data + Hash + Ord {
    type Summary: PathSummary<Self> + 'static;

    fn minimum() -> Self;
}
Expand description

A composite trait for types that serve as timestamps in timely dataflow.

Required Associated Types§

A type summarizing action on a timestamp along a dataflow path.

Required Methods§

A minimum value suitable as a default.

Implementations on Foreign Types§

Implementors§