pub struct RangeInclusiveView<Idx> {
pub start: Idx,
pub end: Idx,
pub exhausted: bool,
}Fields§
§start: Idx§end: Idx§exhausted: boolAuto Trait Implementations§
impl<Idx> Freeze for RangeInclusiveView<Idx>where
Idx: Freeze,
impl<Idx> RefUnwindSafe for RangeInclusiveView<Idx>where
Idx: RefUnwindSafe,
impl<Idx> Send for RangeInclusiveView<Idx>where
Idx: Send,
impl<Idx> Sync for RangeInclusiveView<Idx>where
Idx: Sync,
impl<Idx> Unpin for RangeInclusiveView<Idx>where
Idx: Unpin,
impl<Idx> UnwindSafe for RangeInclusiveView<Idx>where
Idx: 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