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