TimeRange

Type Alias TimeRange 

Source
pub type TimeRange = WillowRange<Timestamp>;
Expand description

A WillowRange of Timestamps.

[TODO example]

Specification

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.