pub type TimeRange = WillowRange<Timestamp>;Expand description
Aliased Type§
pub enum TimeRange {
Closed(Range<Timestamp>),
Open(RangeFrom<Timestamp>),
}Variants§
Closed(Range<Timestamp>)
A closed range with an inclusive start value and an exclusive end value.
Open(RangeFrom<Timestamp>)
An open range with an inclusive start value.