Enum std::collections::Bound
[−]
[src]
pub enum Bound<T> { Included(T), Excluded(T), Unbounded, }
Unstable (
collections_bound
)An endpoint of a range of keys.
Variants
Included | Unstable ( collections_bound )An inclusive bound. |
Excluded | Unstable ( collections_bound )An exclusive bound. |
Unbounded | Unstable ( collections_bound )An infinite endpoint. Indicates that there is no bound in this direction. |