Enum std::collections::BoundUnstable [-] [+] [src]

pub enum Bound<T> {
    Included(T),
    Excluded(T),
    Unbounded,
}

An endpoint of a range of keys.

Variants

Included

An inclusive bound.

Excluded

An exclusive bound.

Unbounded

An infinite endpoint. Indicates that there is no bound in this direction.