pub type TimeWindow = Range<Timestamp>;
Expand description

An exclusive range of timestamps, measured in microseconds

Aliased Type§

struct TimeWindow {
    pub start: Timestamp,
    pub end: Timestamp,
}

Fields§

§start: Timestamp

The lower bound of the range (inclusive).

§end: Timestamp

The upper bound of the range (exclusive).