[][src]Trait amadeus_core::into_dist_iter::IntoDistributedIterator

pub trait IntoDistributedIterator {
    type Iter: DistributedIterator<Item = Self::Item>;
    type Item;
    fn into_dist_iter(self) -> Self::Iter
    where
        Self: Sized
; fn dist_iter_mut(&mut self) -> <&mut Self as IntoDistributedIterator>::Iter
    where
        &'a mut Self: IntoDistributedIterator
, { ... }
fn dist_iter(&self) -> <&Self as IntoDistributedIterator>::Iter
    where
        &'a Self: IntoDistributedIterator
, { ... } }

Associated Types

type Iter: DistributedIterator<Item = Self::Item>

type Item

Loading content...

Required methods

fn into_dist_iter(self) -> Self::Iter where
    Self: Sized

Loading content...

Provided methods

fn dist_iter_mut(&mut self) -> <&mut Self as IntoDistributedIterator>::Iter where
    &'a mut Self: IntoDistributedIterator

fn dist_iter(&self) -> <&Self as IntoDistributedIterator>::Iter where
    &'a Self: IntoDistributedIterator

Loading content...

Implementations on Foreign Types

impl<T> IntoDistributedIterator for Vec<T> where
    T: ProcessSend
[src]

type Iter = IterIter<IntoIter<T>>

type Item = T

impl<'a, T: Clone> IntoDistributedIterator for &'a Vec<T> where
    T: ProcessSend
[src]

type Iter = IterIter<Cloned<Iter<'a, T>>>

type Item = T

impl<T> IntoDistributedIterator for VecDeque<T> where
    T: ProcessSend
[src]

type Iter = IterIter<IntoIter<T>>

type Item = T

impl<'a, T: Clone> IntoDistributedIterator for &'a VecDeque<T> where
    T: ProcessSend
[src]

type Iter = IterIter<Cloned<Iter<'a, T>>>

type Item = T

impl<T: Ord> IntoDistributedIterator for BinaryHeap<T> where
    T: ProcessSend
[src]

type Iter = IterIter<IntoIter<T>>

type Item = T

impl<'a, T: Ord + Clone> IntoDistributedIterator for &'a BinaryHeap<T> where
    T: ProcessSend
[src]

type Iter = IterIter<Cloned<Iter<'a, T>>>

type Item = T

impl<T> IntoDistributedIterator for LinkedList<T> where
    T: ProcessSend
[src]

type Iter = IterIter<IntoIter<T>>

type Item = T

impl<'a, T: Clone> IntoDistributedIterator for &'a LinkedList<T> where
    T: ProcessSend
[src]

type Iter = IterIter<Cloned<Iter<'a, T>>>

type Item = T

impl<T, S> IntoDistributedIterator for HashSet<T, S> where
    T: Eq + Hash + ProcessSend,
    S: BuildHasher + Default
[src]

type Iter = IterIter<IntoIter<T>>

type Item = T

impl<'a, T: Clone, S> IntoDistributedIterator for &'a HashSet<T, S> where
    T: Eq + Hash + ProcessSend,
    S: BuildHasher + Default
[src]

type Iter = IterIter<Cloned<Iter<'a, T>>>

type Item = T

impl<K, V, S> IntoDistributedIterator for HashMap<K, V, S> where
    K: Eq + Hash + ProcessSend,
    V: ProcessSend,
    S: BuildHasher + Default
[src]

type Iter = IterIter<IntoIter<K, V>>

type Item = (K, V)

impl<'a, K: Clone, V: Clone, S> IntoDistributedIterator for &'a HashMap<K, V, S> where
    K: Eq + Hash + ProcessSend,
    V: ProcessSend,
    S: BuildHasher + Default
[src]

type Iter = IterIter<TupleCloned<Iter<'a, K, V>>>

type Item = (K, V)

impl<T> IntoDistributedIterator for BTreeSet<T> where
    T: ProcessSend
[src]

type Iter = IterIter<IntoIter<T>>

type Item = T

impl<'a, T: Clone> IntoDistributedIterator for &'a BTreeSet<T> where
    T: ProcessSend
[src]

type Iter = IterIter<Cloned<Iter<'a, T>>>

type Item = T

impl<K, V> IntoDistributedIterator for BTreeMap<K, V> where
    K: ProcessSend,
    V: ProcessSend
[src]

type Iter = IterIter<IntoIter<K, V>>

type Item = (K, V)

impl<'a, K: Clone, V: Clone> IntoDistributedIterator for &'a BTreeMap<K, V> where
    K: ProcessSend,
    V: ProcessSend
[src]

type Iter = IterIter<TupleCloned<Iter<'a, K, V>>>

type Item = (K, V)

impl IntoDistributedIterator for String[src]

type Iter = IterIter<IntoChars>

type Item = char

impl<'a> IntoDistributedIterator for &'a String[src]

type Iter = IterIter<Chars<'a>>

type Item = char

impl<T> IntoDistributedIterator for Option<T> where
    T: ProcessSend
[src]

type Iter = IterIter<IntoIter<T>>

type Item = T

impl<'a, T: Clone> IntoDistributedIterator for &'a Option<T> where
    T: ProcessSend
[src]

type Iter = IterIter<Cloned<Iter<'a, T>>>

type Item = T

impl<T, E> IntoDistributedIterator for Result<T, E> where
    T: ProcessSend
[src]

type Iter = IterIter<IntoIter<T>>

type Item = T

impl<'a, T: Clone, E> IntoDistributedIterator for &'a Result<T, E> where
    T: ProcessSend
[src]

type Iter = IterIter<Cloned<Iter<'a, T>>>

type Item = T

impl<Idx> IntoDistributedIterator for Range<Idx> where
    Self: Iterator,
    Self::Item: ProcessSend
[src]

type Iter = IterIter<Self>

type Item = Self::Item

impl<Idx> IntoDistributedIterator for RangeFrom<Idx> where
    Self: Iterator,
    Self::Item: ProcessSend
[src]

type Iter = IterIter<Self>

type Item = Self::Item

impl<Idx> IntoDistributedIterator for RangeInclusive<Idx> where
    Self: Iterator,
    Self::Item: ProcessSend
[src]

type Iter = IterIter<Self>

type Item = Self::Item

impl<T> IntoDistributedIterator for [T] where
    T: ProcessSend
[src]

type Iter = Never

type Item = Never

impl<'a, T: Clone> IntoDistributedIterator for &'a [T] where
    T: ProcessSend
[src]

type Iter = IterIter<Cloned<Iter<'a, T>>>

type Item = T

Loading content...

Implementors

impl<T: DistributedIterator> IntoDistributedIterator for T[src]

type Iter = Self

type Item = Self::Item

Loading content...