Enum postgres_protocol::types::RangeBound [] [src]

pub enum RangeBound<T> {
    Inclusive(T),
    Exclusive(T),
    Unbounded,
}

One side of a range.

Variants

An inclusive bound.

An exclusive bound.

No bound.