Struct RangeInclusiveIter
struct RangeInclusiveIter<A>(_)
By-value RangeInclusive iterator.
Implementations
impl<A: Step> RangeInclusiveIter<A>
fn remainder(self: Self) -> Option<RangeInclusive<A>>Returns the remainder of the range being iterated over.
If the iterator is exhausted or empty, returns
None.
impl ExactSizeIterator for RangeInclusiveIter<i8>
impl ExactSizeIterator for RangeInclusiveIter<u8>
impl<A> Freeze for RangeInclusiveIter<A>
impl<A> RefUnwindSafe for RangeInclusiveIter<A>
impl<A> Send for RangeInclusiveIter<A>
impl<A> Sync for RangeInclusiveIter<A>
impl<A> Unpin for RangeInclusiveIter<A>
impl<A> UnsafeUnpin for RangeInclusiveIter<A>
impl<A> UnwindSafe for RangeInclusiveIter<A>
impl<A: $crate::clone::Clone> Clone for RangeInclusiveIter<A>
fn clone(self: &Self) -> RangeInclusiveIter<A>
impl<A: $crate::fmt::Debug> Debug for RangeInclusiveIter<A>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<A: Step> DoubleEndedIterator for RangeInclusiveIter<A>
fn next_back(self: &mut Self) -> Option<A>fn nth_back(self: &mut Self, n: usize) -> Option<A>fn advance_back_by(self: &mut Self, n: usize) -> Result<(), NonZero<usize>>
impl<A: Step> FusedIterator for RangeInclusiveIter<A>
impl<A: Step> Iterator for RangeInclusiveIter<A>
fn next(self: &mut Self) -> Option<A>fn size_hint(self: &Self) -> (usize, Option<usize>)fn count(self: Self) -> usizefn nth(self: &mut Self, n: usize) -> Option<A>fn last(self: Self) -> Option<A>fn min(self: Self) -> Option<A> where A: Ordfn max(self: Self) -> Option<A> where A: Ordfn is_sorted(self: Self) -> boolfn advance_by(self: &mut Self, n: usize) -> Result<(), NonZero<usize>>
impl<A: TrustedStep> TrustedLen for RangeInclusiveIter<A>
impl<I> IntoIterator for RangeInclusiveIter<A>
fn into_iter(self: Self) -> I
impl<T> Any for RangeInclusiveIter<A>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for RangeInclusiveIter<A>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for RangeInclusiveIter<A>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for RangeInclusiveIter<A>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for RangeInclusiveIter<A>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for RangeInclusiveIter<A>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for RangeInclusiveIter<A>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for RangeInclusiveIter<A>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>