pub type TimeRange = WillowRange<Timestamp>;Expand description
Aliased Type§
#[repr(C)]pub enum TimeRange {
Closed(ClosedRange<Timestamp>),
Open(Timestamp),
}Variants§
Closed(ClosedRange<Timestamp>)
A closed range with an inclusive start value and an exclusive end value.
Open(Timestamp)
An open range with an inclusive start value.
It includes all values greater than or equal to that start value.