[][src]Struct math::set::contiguous_integer_set::ContiguousIntegerSetIter

pub struct ContiguousIntegerSetIter<E: Integer + Copy> { /* fields omitted */ }

An iterator that iterates through the integers in the contiguous integer set.

Trait Implementations

impl<E: Integer + Copy> From<ContiguousIntegerSet<E>> for ContiguousIntegerSetIter<E>[src]

impl<E: Integer + Copy> Iterator for ContiguousIntegerSetIter<E>[src]

type Item = E

The type of the elements being iterated over.

impl<E, '_> Sample<'_, ContiguousIntegerSetIter<E>, E, OrderedIntegerSet<E>> for ContiguousIntegerSet<E> where
    E: Integer + Copy + ToPrimitive
[src]

impl<E: Integer + Copy, '_> ToIterator<'_, ContiguousIntegerSetIter<E>, E> for ContiguousIntegerSet<E>[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for ContiguousIntegerSetIter<E> where
    E: RefUnwindSafe

impl<E> Send for ContiguousIntegerSetIter<E> where
    E: Send

impl<E> Sync for ContiguousIntegerSetIter<E> where
    E: Sync

impl<E> Unpin for ContiguousIntegerSetIter<E> where
    E: Unpin

impl<E> UnwindSafe for ContiguousIntegerSetIter<E> where
    E: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I, V> IntoBinnedIntervalIter<V> for I where
    I: Iterator,
    V: Copy + Num + FromPrimitive + PartialOrd<V>, 
[src]

impl<I> IntoFlatZipIter<I> for I where
    I: Iterator
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> ParallelBridge for T where
    T: Send + Iterator,
    <T as Iterator>::Item: Send
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,