pub trait Timestamp:
Clone
+ Eq
+ PartialOrder
+ Debug
+ Send
+ Any
+ ExchangeData
+ 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.
Required Methods§
Object Safety§
This trait is not object safe.