Trait core::ops::RangeBounds 1.28.0[−][src]
pub trait RangeBounds<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: ?Sized + PartialOrd<T>,
{ ... }
}
Expand description
RangeBounds
由 Rust 的内置范围类型实现,由 ..
、a..
、..b
、..=c
、d..e
或 f..=g
等范围语法生成。
Required methods
fn start_bound(&self) -> Bound<&T>
fn start_bound(&self) -> Bound<&T>
Provided methods
1.35.0[src]fn contains<U>(&self, item: &U) -> bool where
T: PartialOrd<U>,
U: ?Sized + PartialOrd<T>,
1.35.0[src]