Struct btree_range_map::RangeFromExcludedTo
source · pub struct RangeFromExcludedTo<T> {
pub start: T,
pub end: T,
}Expand description
Range where both bounds are excluded.
Fields§
§start: T§end: TImplementations§
source§impl<T> RangeFromExcludedTo<T>
impl<T> RangeFromExcludedTo<T>
pub const fn new(start: T, end: T) -> RangeFromExcludedTo<T>
Trait Implementations§
source§impl<T: Measure + PartialEnum> AsRange for RangeFromExcludedTo<T>
impl<T: Measure + PartialEnum> AsRange for RangeFromExcludedTo<T>
source§impl<T: Measure + PartialEnum> IntoRange for RangeFromExcludedTo<T>
impl<T: Measure + PartialEnum> IntoRange for RangeFromExcludedTo<T>
fn into_range(self) -> AnyRange<Self::Item>
source§impl<T> RangeBounds<T> for RangeFromExcludedTo<T>
impl<T> RangeBounds<T> for RangeFromExcludedTo<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for RangeFromExcludedTo<T>where T: RefUnwindSafe,
impl<T> Send for RangeFromExcludedTo<T>where T: Send,
impl<T> Sync for RangeFromExcludedTo<T>where T: Sync,
impl<T> Unpin for RangeFromExcludedTo<T>where T: Unpin,
impl<T> UnwindSafe for RangeFromExcludedTo<T>where T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more