[][src]Trait amadeus::FromParallelStream

pub trait FromParallelStream<T> where
    <Self::ReduceC as Reducer<<Self::ReduceA as ReducerSend<T>>::Output>>::Output == Self, 
{ type ReduceA: ReducerSend<T> + Clone + Send; type ReduceC: Reducer<<Self::ReduceA as ReducerSend<T>>::Output>; fn reducers() -> (Self::ReduceA, Self::ReduceC); }

Associated Types

Loading content...

Required methods

fn reducers() -> (Self::ReduceA, Self::ReduceC)

Loading content...

Implementations on Foreign Types

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

impl<K, V> FromParallelStream<(K, V)> for BTreeMap<K, V> where
    K: Ord + Send + 'static,
    V: Send + 'static, 
[src]

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

impl FromParallelStream<char> for String[src]

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

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

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

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

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

type ReduceA = PushReducer<(K, V), HashMap<K, V, S>>

type ReduceC = ExtendReducer<HashMap<K, V, S>, HashMap<K, V, S>>

impl FromParallelStream<String> for String[src]

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

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

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

Loading content...

Implementors

impl<T> FromParallelStream<T> for List<T> where
    T: Data + Send + 'static, 
[src]

Loading content...