Struct konst::range::RangeFromIter
source · pub struct RangeFromIter<T> { /* private fields */ }
Expand description
Implementations§
source§impl<T> RangeFromIter<T>where
T: Step,
impl<T> RangeFromIter<T>where
T: Step,
sourcepub const fn copy(&self) -> RangeFromIter<T>
pub const fn copy(&self) -> RangeFromIter<T>
Creates a clone of this iterator
sourcepub const fn next(self) -> Option<(T, RangeFromIter<T>)>
pub const fn next(self) -> Option<(T, RangeFromIter<T>)>
Advances the iterator and returns the next value.
Trait Implementations§
source§impl<T> ConstIntoIter for RangeFromIter<T>where
T: Step,
impl<T> ConstIntoIter for RangeFromIter<T>where
T: Step,
§type Kind = IsIteratorKind
type Kind = IsIteratorKind
What kind of type this is: Read more
§type IntoIter = RangeFromIter<T>
type IntoIter = RangeFromIter<T>
The iterator that this can be converted into.
Auto Trait Implementations§
impl<T> Freeze for RangeFromIter<T>where
T: Freeze,
impl<T> RefUnwindSafe for RangeFromIter<T>where
T: RefUnwindSafe,
impl<T> Send for RangeFromIter<T>where
T: Send,
impl<T> Sync for RangeFromIter<T>where
T: Sync,
impl<T> Unpin for RangeFromIter<T>where
T: Unpin,
impl<T> UnwindSafe for RangeFromIter<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