Trait std::ops::RangeBounds   
1.28.0 · source · pub trait RangeBounds<T> where
  T: ?Sized, {
 fn start_bound(&self) -> Bound<&T>;
 fn end_bound(&self) -> Bound<&T>;
 fn contains<U>(&self, item: &U) -> bool 
  where
    T: PartialOrd<U>,
    U: PartialOrd<T> + ?Sized ,
 { ... }
}Expand description
RangeBounds is implemented by Rust’s built-in range types, produced
by range syntax like .., a.., ..b, ..=c, d..e, or f..=g.
Required Methods
fn start_bound(&self) -> Bound<&T>
fn start_bound(&self) -> Bound<&T>
Provided Methods
1.35.0 · source fn contains<U>(&self, item: &U) -> bool where
  T: PartialOrd<U>,
  U: PartialOrd<T> + ?Sized, 
1.35.0 · source