[][src]Trait amadeus::IntoParallelStream

pub trait IntoParallelStream where
    <Self::ParStream as ParallelStream>::Item == Self::Item
{ type ParStream: ParallelStream; type Item; fn into_par_stream(self) -> Self::ParStream; fn dist_stream_mut(
        &mut self
    ) -> <&mut Self as IntoParallelStream>::ParStream
    where
        &'a mut Self: for<'a> IntoParallelStream
, { ... }
fn par_stream(&self) -> <&Self as IntoParallelStream>::ParStream
    where
        &'a Self: for<'a> IntoParallelStream
, { ... } }

Associated Types

Loading content...

Required methods

fn into_par_stream(self) -> Self::ParStream

Loading content...

Provided methods

fn dist_stream_mut(&mut self) -> <&mut Self as IntoParallelStream>::ParStream where
    &'a mut Self: for<'a> IntoParallelStream

fn par_stream(&self) -> <&Self as IntoParallelStream>::ParStream where
    &'a Self: for<'a> IntoParallelStream

Loading content...

Implementations on Foreign Types

impl<'a, T> IntoParallelStream for &'a [T] where
    T: Clone + Send + 'static, 
[src]

type ParStream = IterParStream<Cloned<Iter<'a, T>>>

type Item = T

impl<T> IntoParallelStream for Vec<T> where
    T: Send + 'static, 
[src]

type ParStream = IterParStream<IntoIter<T>>

type Item = T

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

type ParStream = IterParStream<Chars<'a>>

type Item = char

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

type ParStream = IterParStream<Cloned<Iter<'a, T>>>

type Item = T

impl<'a, T> IntoParallelStream for &'a Vec<T> where
    T: Clone + Send + 'static, 
[src]

type ParStream = IterParStream<Cloned<Iter<'a, T>>>

type Item = T

impl<'a, T> IntoParallelStream for &'a BinaryHeap<T> where
    T: Clone + Ord + Send + 'static, 
[src]

type ParStream = IterParStream<Cloned<Iter<'a, T>>>

type Item = T

impl<K, V> IntoParallelStream for BTreeMap<K, V> where
    K: Send + 'static,
    V: Send + 'static, 
[src]

type ParStream = IterParStream<IntoIter<K, V>>

type Item = (K, V)

impl<T, E> IntoParallelStream for Result<T, E> where
    T: Send + 'static, 
[src]

type ParStream = IterParStream<IntoIter<T>>

type Item = T

impl<T> IntoParallelStream for BinaryHeap<T> where
    T: Ord + Send + 'static, 
[src]

impl<T, S> IntoParallelStream for HashSet<T, S> where
    S: BuildHasher + Default,
    T: Eq + Hash + Send + 'static, 
[src]

type ParStream = IterParStream<IntoIter<T>>

type Item = T

impl<T> IntoParallelStream for [T] where
    T: Send + 'static, 
[src]

type ParStream = Never

type Item = Never

impl<T> IntoParallelStream for BTreeSet<T> where
    T: Send + 'static, 
[src]

type ParStream = IterParStream<IntoIter<T>>

type Item = T

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

type ParStream = IterParStream<TupleCloned<Iter<'a, K, V>>>

type Item = (K, V)

impl<'a, K, V> IntoParallelStream for &'a BTreeMap<K, V> where
    K: Clone + Send + 'static,
    V: Clone + Send + 'static, 
[src]

type ParStream = IterParStream<TupleCloned<Iter<'a, K, V>>>

type Item = (K, V)

impl<'a, T> IntoParallelStream for &'a BTreeSet<T> where
    T: Clone + Send + 'static, 
[src]

type ParStream = IterParStream<Cloned<Iter<'a, T>>>

type Item = T

impl<Idx> IntoParallelStream for RangeFrom<Idx> where
    RangeFrom<Idx>: Iterator,
    <RangeFrom<Idx> as Iterator>::Item: Send,
    <RangeFrom<Idx> as Iterator>::Item: 'static, 
[src]

type ParStream = IterParStream<RangeFrom<Idx>>

type Item = <RangeFrom<Idx> as Iterator>::Item

impl<T> IntoParallelStream for Option<T> where
    T: Send + 'static, 
[src]

type ParStream = IterParStream<IntoIter<T>>

type Item = T

impl<T> IntoParallelStream for VecDeque<T> where
    T: Send + 'static, 
[src]

type ParStream = IterParStream<IntoIter<T>>

type Item = T

impl<'a, T> IntoParallelStream for &'a VecDeque<T> where
    T: Clone + Send + 'static, 
[src]

type ParStream = IterParStream<Cloned<Iter<'a, T>>>

type Item = T

impl<K, V, S> IntoParallelStream for HashMap<K, V, S> where
    K: Eq + Hash + Send + 'static,
    S: BuildHasher + Default,
    V: Send + 'static, 
[src]

type ParStream = IterParStream<IntoIter<K, V>>

type Item = (K, V)

impl<T> IntoParallelStream for LinkedList<T> where
    T: Send + 'static, 
[src]

impl IntoParallelStream for String[src]

type ParStream = IterParStream<OwnedChars>

type Item = char

impl<'a, T, E> IntoParallelStream for &'a Result<T, E> where
    T: Clone + Send + 'static, 
[src]

type ParStream = IterParStream<Cloned<Iter<'a, T>>>

type Item = T

impl<Idx> IntoParallelStream for RangeInclusive<Idx> where
    RangeInclusive<Idx>: Iterator,
    <RangeInclusive<Idx> as Iterator>::Item: Send,
    <RangeInclusive<Idx> as Iterator>::Item: 'static, 
[src]

impl<'a, T> IntoParallelStream for &'a LinkedList<T> where
    T: Clone + Send + 'static, 
[src]

type ParStream = IterParStream<Cloned<Iter<'a, T>>>

type Item = T

impl<'a, T> IntoParallelStream for &'a Option<T> where
    T: Clone + Send + 'static, 
[src]

type ParStream = IterParStream<Cloned<Iter<'a, T>>>

type Item = T

impl<Idx> IntoParallelStream for Range<Idx> where
    Range<Idx>: Iterator,
    <Range<Idx> as Iterator>::Item: Send,
    <Range<Idx> as Iterator>::Item: 'static, 
[src]

type ParStream = IterParStream<Range<Idx>>

type Item = <Range<Idx> as Iterator>::Item

Loading content...

Implementors

impl<T> IntoParallelStream for T where
    T: ParallelStream
[src]

Loading content...