[][src]Struct const_combinations::Permutations

#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]pub struct Permutations<I, const K: usize> where
    I: Iterator,
    I::Item: Clone
{ /* fields omitted */ }

An iterator that returns k-length permutations of values from iter.

This struct is created by the permutations method on IterExt. See its documentation for more.

Trait Implementations

impl<I: Clone, const K: usize> Clone for Permutations<I, K> where
    I: Iterator,
    I::Item: Clone,
    I::Item: Clone
[src]

impl<I: Debug, const K: usize> Debug for Permutations<I, K> where
    I: Iterator,
    I::Item: Clone,
    I::Item: Debug
[src]

impl<I, const K: usize> Iterator for Permutations<I, K> where
    I: Iterator,
    I::Item: Clone
[src]

type Item = [I::Item; K]

The type of the elements being iterated over.

Auto Trait Implementations

impl<I, const K: usize> RefUnwindSafe for Permutations<I, K> where
    I: RefUnwindSafe,
    <I as Iterator>::Item: RefUnwindSafe
[src]

impl<I, const K: usize> Send for Permutations<I, K> where
    I: Send,
    <I as Iterator>::Item: Send
[src]

impl<I, const K: usize> Sync for Permutations<I, K> where
    I: Sync,
    <I as Iterator>::Item: Sync
[src]

impl<I, const K: usize> Unpin for Permutations<I, K> where
    I: Unpin,
    <I as Iterator>::Item: Unpin
[src]

impl<I, const K: usize> UnwindSafe for Permutations<I, K> where
    I: UnwindSafe,
    <I as Iterator>::Item: UnwindSafe
[src]

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> 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<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.