[][src]Trait amadeus::FromDistributedIterator

pub trait FromDistributedIterator<T> where
    <Self::ReduceAFactory as ReduceFactory>::Reducer == Self::ReduceA,
    <Self::ReduceA as Reducer>::Item == T,
    <Self::ReduceB as Reducer>::Item == <Self::ReduceA as Reducer>::Output,
    <Self::ReduceB as Reducer>::Output == Self, 
{ type ReduceAFactory: ReduceFactory; type ReduceA: ReducerA + ProcessSend; type ReduceB: Reducer; fn reducers() -> (Self::ReduceAFactory, Self::ReduceB); }

Associated Types

Loading content...

Required methods

fn reducers() -> (Self::ReduceAFactory, Self::ReduceB)

Loading content...

Implementations on Foreign Types

impl<T> FromDistributedIterator<T> for BTreeSet<T> where
    T: Ord + ProcessSend
[src]

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

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

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

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

impl<T, C> FromDistributedIterator<Option<T>> for Option<C> where
    C: FromDistributedIterator<T>, 
[src]

impl<K, V> FromDistributedIterator<(K, V)> for BTreeMap<K, V> where
    K: Ord + ProcessSend,
    V: ProcessSend
[src]

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

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

impl FromDistributedIterator<char> for String[src]

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

impl FromDistributedIterator<String> for String[src]

impl FromDistributedIterator<()> for ()[src]

Loading content...

Implementors

Loading content...