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

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

One side of a range.

Variants

Inclusive(T)

An inclusive bound.

Exclusive(T)

An exclusive bound.

Unbounded

No bound.