pub struct RangeFromExcludedToIncluded<T> {
pub start: T,
pub end: T,
}Expand description
Range with an excluded start bound and included end bound.
Fields§
§start: T§end: TImplementations§
source§impl<T> RangeFromExcludedToIncluded<T>
impl<T> RangeFromExcludedToIncluded<T>
pub const fn new(start: T, end: T) -> RangeFromExcludedToIncluded<T>
Trait Implementations§
source§impl<T: Measure + PartialEnum> AsRange for RangeFromExcludedToIncluded<T>
impl<T: Measure + PartialEnum> AsRange for RangeFromExcludedToIncluded<T>
source§impl<T: Measure + PartialEnum> IntoRange for RangeFromExcludedToIncluded<T>
impl<T: Measure + PartialEnum> IntoRange for RangeFromExcludedToIncluded<T>
fn into_range(self) -> AnyRange<Self::Item>
source§impl<T> RangeBounds<T> for RangeFromExcludedToIncluded<T>
impl<T> RangeBounds<T> for RangeFromExcludedToIncluded<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for RangeFromExcludedToIncluded<T>where T: RefUnwindSafe,
impl<T> Send for RangeFromExcludedToIncluded<T>where T: Send,
impl<T> Sync for RangeFromExcludedToIncluded<T>where T: Sync,
impl<T> Unpin for RangeFromExcludedToIncluded<T>where T: Unpin,
impl<T> UnwindSafe for RangeFromExcludedToIncluded<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