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: ?Sized>(&self, item: &U) -> bool
where
T: PartialOrd<U>,
U: PartialOrd<T>, { ... } }
Expand description
RangeBounds
由 Rust 的内置范围类型实现,该范围类型由范围语法 (例如 ..
,a..
,..b
,..=c
,d..e
或 f..=g
) 产生。