Type Alias mz_repr::adt::range::RangeUpperBound
source · pub type RangeUpperBound<B> = RangeBound<B, true>;
Expand description
A RangeBound
that sorts correctly for use as an upper bound.
Aliased Type§
struct RangeUpperBound<B> {
pub inclusive: bool,
pub bound: Option<B>,
}
Fields§
§inclusive: bool
§bound: Option<B>
None value represents an infinite bound.