Trait core::ops::OneSidedRange

source ·
pub trait OneSidedRange<T: ?Sized>: RangeBounds<T> { }
🔬This is a nightly-only experimental API. (one_sided_range #69780)
Expand description

OneSidedRange is implemented for built-in range types that are unbounded on one side. For example, a.., ..b and ..=c implement OneSidedRange, but .., d..e, and f..=g do not.

Types that implement OneSidedRange<T> must return Bound::Unbounded from one of RangeBounds::start_bound or RangeBounds::end_bound.

Implementors§

source§

impl<T> OneSidedRange<T> for RangeFrom<T>where Self: RangeBounds<T>,

source§

impl<T> OneSidedRange<T> for RangeTo<T>where Self: RangeBounds<T>,

source§

impl<T> OneSidedRange<T> for RangeToInclusive<T>where Self: RangeBounds<T>,