Type Alias mz_repr::adt::range::RangeLowerBound

source ·
pub type RangeLowerBound<B> = RangeBound<B, false>;
Expand description

A RangeBound that sorts correctly for use as a lower bound.

Aliased Type§

struct RangeLowerBound<B> {
    pub inclusive: bool,
    pub bound: Option<B>,
}

Fields§

§inclusive: bool§bound: Option<B>

None value represents an infinite bound.