Struct amadeus::par_stream::FlatMapSync[][src]

#[must_use]
pub struct FlatMapSync<P, F> { /* fields omitted */ }

Implementations

impl<P, F> FlatMapSync<P, F>[src]

pub fn new(pipe: P, f: F) -> FlatMapSync<P, F>[src]

Constructs a new FlatMapSync.

Trait Implementations

impl<P, F, R, Input> DistributedPipe<Input> for FlatMapSync<P, F> where
    F: FnMut<(<P as DistributedPipe<Input>>::Output,), Output = R> + Clone + ProcessSend + 'static,
    P: DistributedPipe<Input>,
    R: Iterator
[src]

type Output = <R as Iterator>::Item

type Task = FlatMapSyncTask<<P as DistributedPipe<Input>>::Task, F>

pub fn task(&self) -> <FlatMapSync<P, F> as DistributedPipe<Input>>::Task[src]

fn inspect<F>(self, f: F) -> Inspect<Self, F> where
    F: FnMut<(&Self::Output,), Output = ()> + Clone + ProcessSend + 'static, 
[src]

fn update<F>(self, f: F) -> Update<Self, F> where
    F: FnMut<(&mut Self::Output,), Output = ()> + Clone + ProcessSend + 'static, 
[src]

fn map<B, F>(self, f: F) -> Map<Self, F> where
    F: FnMut<(Self::Output,), Output = B> + Clone + ProcessSend + 'static, 
[src]

fn flat_map<B, F>(self, f: F) -> FlatMap<Self, F> where
    F: FnMut<(Self::Output,), Output = B> + Clone + ProcessSend + 'static,
    B: Stream, 
[src]

fn filter<F>(self, f: F) -> Filter<Self, F> where
    F: FnMut<(&Self::Output,), Output = bool> + Clone + ProcessSend + 'static, 
[src]

fn cloned<'a, T>(self) -> Cloned<Self, T, Input> where
    Self: DistributedPipe<&'a Input, Output = &'a T>,
    Input: 'a,
    T: Clone + 'a, 
[src]

fn left_join<K, V1, V2>(
    self,
    right: impl IntoIterator<Item = (K, V2)>
) -> LeftJoin<Self, K, V1, V2> where
    Self: DistributedPipe<Input, Output = (K, V1)>,
    K: Eq + Hash + Clone + ProcessSend + 'static,
    V1: 'static,
    V2: Clone + ProcessSend + 'static, 
[src]

fn inner_join<K, V1, V2>(
    self,
    right: impl IntoIterator<Item = (K, V2)>
) -> InnerJoin<Self, K, V1, V2> where
    Self: DistributedPipe<Input, Output = (K, V1)>,
    K: Eq + Hash + Clone + ProcessSend + 'static,
    V1: 'static,
    V2: Clone + ProcessSend + 'static, 
[src]

fn pipe<S>(self, sink: S) -> Pipe<Self, S> where
    S: DistributedSink<Self::Output>, 
[src]

fn fork<A, B, RefAItem>(
    self,
    sink: A,
    sink_ref: B
) -> Fork<Self, A, B, &'static Self::Output> where
    A: DistributedSink<Self::Output>,
    B: for<'a> DistributedSink<&'a Self::Output>, 
[src]

fn for_each<F>(self, f: F) -> ForEach<Self, F> where
    F: FnMut<(Self::Output,), Output = ()> + Clone + ProcessSend + 'static, 
[src]

fn fold<ID, F, B>(self, identity: ID, op: F) -> Fold<Self, ID, F, B> where
    F: FnMut<(B, Either<Self::Output, B>), Output = B> + Clone + ProcessSend + 'static,
    B: ProcessSend + 'static,
    ID: FnMut<(), Output = B> + Clone + ProcessSend + 'static, 
[src]

fn group_by<S, A, B>(self, sink: S) -> GroupBy<Self, S> where
    Self: DistributedPipe<Input, Output = (A, B)>,
    S: DistributedSink<B>,
    A: Eq + Hash + ProcessSend + 'static,
    <<S as DistributedSink<B>>::Pipe as DistributedPipe<B>>::Task: Clone,
    <<S as DistributedSink<B>>::Pipe as DistributedPipe<B>>::Task: ProcessSend,
    <<S as DistributedSink<B>>::Pipe as DistributedPipe<B>>::Task: 'static,
    <S as DistributedSink<B>>::ReduceA: 'static,
    <S as DistributedSink<B>>::ReduceC: Clone,
    <S as DistributedSink<B>>::Done: ProcessSend,
    <S as DistributedSink<B>>::Done: 'static, 
[src]

fn histogram(self) -> Histogram<Self> where
    Self::Output: Hash,
    Self::Output: Ord,
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn sort_n_by<F>(self, n: usize, cmp: F) -> Sort<Self, F> where
    F: Fn<(&Self::Output, &Self::Output), Output = Ordering> + Clone + ProcessSend + 'static,
    Self::Output: Clone,
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn count(self) -> Count<Self>[src]

fn sum<B>(self) -> Sum<Self, B> where
    B: Sum<Self::Output> + Sum<B> + ProcessSend + 'static, 
[src]

fn mean(self) -> Mean<Self> where
    Self: DistributedPipe<Input, Output = f64>, 
[src]

fn stddev(self) -> StdDev<Self> where
    Self: DistributedPipe<Input, Output = f64>, 
[src]

fn combine<F>(self, f: F) -> Combine<Self, F> where
    F: FnMut<(Self::Output, Self::Output), Output = Self::Output> + Clone + ProcessSend + 'static,
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn max(self) -> Max<Self> where
    Self::Output: Ord,
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn max_by<F>(self, f: F) -> MaxBy<Self, F> where
    F: FnMut<(&Self::Output, &Self::Output), Output = Ordering> + Clone + ProcessSend + 'static,
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn max_by_key<F, B>(self, f: F) -> MaxByKey<Self, F> where
    F: FnMut<(&Self::Output,), Output = B> + Clone + ProcessSend + 'static,
    B: Ord + 'static,
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn min(self) -> Min<Self> where
    Self::Output: Ord,
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn min_by<F>(self, f: F) -> MinBy<Self, F> where
    F: FnMut<(&Self::Output, &Self::Output), Output = Ordering> + Clone + ProcessSend + 'static,
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn min_by_key<F, B>(self, f: F) -> MinByKey<Self, F> where
    F: FnMut<(&Self::Output,), Output = B> + Clone + ProcessSend + 'static,
    B: Ord + 'static,
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn most_frequent(
    self,
    n: usize,
    probability: f64,
    tolerance: f64
) -> MostFrequent<Self> where
    Self::Output: Hash,
    Self::Output: Eq,
    Self::Output: Clone,
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn most_distinct<A, B>(
    self,
    n: usize,
    probability: f64,
    tolerance: f64,
    error_rate: f64
) -> MostDistinct<Self> where
    Self: DistributedPipe<Input, Output = (A, B)>,
    A: Hash + Eq + Clone + ProcessSend + 'static,
    B: Hash + 'static, 
[src]

fn sample_unstable(self, samples: usize) -> SampleUnstable<Self> where
    Self::Output: ProcessSend,
    Self::Output: 'static, 
[src]

fn all<F>(self, f: F) -> All<Self, F> where
    F: FnMut<(Self::Output,), Output = bool> + Clone + ProcessSend + 'static, 
[src]

fn any<F>(self, f: F) -> Any<Self, F> where
    F: FnMut<(Self::Output,), Output = bool> + Clone + ProcessSend + 'static, 
[src]

fn collect<B>(self) -> Collect<Self, B> where
    B: FromDistributedStream<Self::Output>, 
[src]

impl<P, F, R> DistributedStream for FlatMapSync<P, F> where
    F: FnMut<(<P as DistributedStream>::Item,), Output = R> + Clone + ProcessSend + 'static,
    P: DistributedStream,
    R: Iterator
[src]

type Item = <R as Iterator>::Item

type Task = FlatMapSyncTask<<P as DistributedStream>::Task, F>

pub fn size_hint(&self) -> (usize, Option<usize>)[src]

pub fn next_task(
    self: Pin<&mut FlatMapSync<P, F>>,
    cx: &mut Context<'_>
) -> Poll<Option<<FlatMapSync<P, F> as DistributedStream>::Task>>
[src]

#[must_use]
fn reduce<'life0, 'async_trait, P, B, R1, R2, R3>(
    self,
    pool: &'life0 P,
    reduce_a: R1,
    reduce_b: R2,
    reduce_c: R3
) -> Pin<Box<dyn Future<Output = B> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    B: 'async_trait,
    P: ProcessPool + 'async_trait,
    R1: ReducerSend<Self::Item> + Clone + ProcessSend + 'static + 'async_trait,
    R2: ReducerProcessSend<<R1 as ReducerSend<Self::Item>>::Done> + Clone + ProcessSend + 'static + 'async_trait,
    R3: Reducer<<R2 as ReducerProcessSend<<R1 as ReducerSend<Self::Item>>::Done>>::Done, Done = B> + 'async_trait,
    Self::Task: 'static, 
[src]

#[must_use]
fn pipe<'life0, 'async_trait, P, DistSink, A>(
    self,
    pool: &'life0 P,
    sink: DistSink
) -> Pin<Box<dyn Future<Output = A> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    DistSink: DistributedSink<Self::Item, Done = A> + 'async_trait,
    A: 'async_trait,
    P: ProcessPool + 'async_trait,
    <<DistSink as DistributedSink<Self::Item>>::Pipe as DistributedPipe<Self::Item>>::Task: 'static,
    <DistSink as DistributedSink<Self::Item>>::ReduceA: 'static,
    <DistSink as DistributedSink<Self::Item>>::ReduceB: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn fork<'life0, 'async_trait, P, DistSinkA, DistSinkB, A, B>(
    self,
    pool: &'life0 P,
    sink_a: DistSinkA,
    sink_b: DistSinkB
) -> Pin<Box<dyn Future<Output = (A, B)> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    A: 'async_trait,
    B: 'async_trait,
    P: ProcessPool + 'async_trait,
    DistSinkA: DistributedSink<Self::Item, Done = A> + 'async_trait,
    DistSinkB: for<'a> DistributedSink<&'a Self::Item, Done = B> + 'static + 'async_trait,
    <<DistSinkA as DistributedSink<Self::Item>>::Pipe as DistributedPipe<Self::Item>>::Task: 'static,
    <DistSinkA as DistributedSink<Self::Item>>::ReduceA: 'static,
    <DistSinkA as DistributedSink<Self::Item>>::ReduceB: 'static,
    <DistSinkB as DistributedSink<&'static Self::Item>>::ReduceA: 'static,
    <DistSinkB as DistributedSink<&'static Self::Item>>::ReduceB: 'static,
    <<DistSinkB as DistributedSink<&'static Self::Item>>::Pipe as DistributedPipe<&'static Self::Item>>::Task: 'static,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn group_by<'life0, 'async_trait, P, S, A, B>(
    self,
    pool: &'life0 P,
    sink: S
) -> Pin<Box<dyn Future<Output = IndexMap<A, <S as DistributedSink<B>>::Done, RandomState>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: DistributedStream<Item = (A, B)> + 'async_trait,
    S: DistributedSink<B> + 'async_trait,
    A: Eq + Hash + ProcessSend + 'static + 'async_trait,
    B: 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    <<S as DistributedSink<B>>::Pipe as DistributedPipe<B>>::Task: Clone,
    <<S as DistributedSink<B>>::Pipe as DistributedPipe<B>>::Task: ProcessSend,
    <<S as DistributedSink<B>>::Pipe as DistributedPipe<B>>::Task: 'static,
    <S as DistributedSink<B>>::ReduceA: 'static,
    <S as DistributedSink<B>>::ReduceB: 'static,
    <S as DistributedSink<B>>::ReduceC: Clone,
    <S as DistributedSink<B>>::Done: ProcessSend,
    <S as DistributedSink<B>>::Done: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn collect<'life0, 'async_trait, P, B>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = B> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    B: FromDistributedStream<Self::Item> + 'async_trait,
    P: ProcessPool + 'async_trait,
    <B as FromDistributedStream<Self::Item>>::ReduceA: ProcessSend,
    <B as FromDistributedStream<Self::Item>>::ReduceA: 'static,
    <B as FromDistributedStream<Self::Item>>::ReduceB: ProcessSend,
    <B as FromDistributedStream<Self::Item>>::ReduceB: 'static,
    Self::Task: 'static, 
[src]

fn inspect<F>(self, f: F) -> Inspect<Self, F> where
    F: FnMut<(&Self::Item,), Output = ()> + Clone + ProcessSend + 'static, 
[src]

fn update<F>(self, f: F) -> Update<Self, F> where
    F: FnMut<(&mut Self::Item,), Output = ()> + Clone + ProcessSend + 'static, 
[src]

fn map<B, F>(self, f: F) -> Map<Self, F> where
    F: FnMut<(Self::Item,), Output = B> + Clone + ProcessSend + 'static, 
[src]

fn flat_map<B, F>(self, f: F) -> FlatMap<Self, F> where
    F: FnMut<(Self::Item,), Output = B> + Clone + ProcessSend + 'static,
    B: Stream, 
[src]

fn filter<F>(self, f: F) -> Filter<Self, F> where
    F: FnMut<(&Self::Item,), Output = bool> + Clone + ProcessSend + 'static, 
[src]

fn left_join<K, V1, V2>(
    self,
    right: impl IntoIterator<Item = (K, V2)>
) -> LeftJoin<Self, K, V1, V2> where
    Self: DistributedStream<Item = (K, V1)>,
    K: Eq + Hash + Clone + ProcessSend + 'static,
    V1: 'static,
    V2: Clone + ProcessSend + 'static, 
[src]

fn inner_join<K, V1, V2>(
    self,
    right: impl IntoIterator<Item = (K, V2)>
) -> InnerJoin<Self, K, V1, V2> where
    Self: DistributedStream<Item = (K, V1)>,
    K: Eq + Hash + Clone + ProcessSend + 'static,
    V1: 'static,
    V2: Clone + ProcessSend + 'static, 
[src]

fn chain<C>(
    self,
    chain: C
) -> Chain<Self, <C as IntoDistributedStream>::DistStream> where
    C: IntoDistributedStream<Item = Self::Item>, 
[src]

#[must_use]
fn for_each<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = ()> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut<(Self::Item,), Output = ()> + Clone + ProcessSend + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn fold<'life0, 'async_trait, P, ID, F, B>(
    self,
    pool: &'life0 P,
    identity: ID,
    op: F
) -> Pin<Box<dyn Future<Output = B> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut<(B, Either<Self::Item, B>), Output = B> + Clone + ProcessSend + 'static + 'async_trait,
    B: ProcessSend + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    ID: FnMut<(), Output = B> + Clone + ProcessSend + 'static + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn histogram<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = Vec<(Self::Item, usize), Global>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: Hash,
    Self::Item: Ord,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn sort_n_by<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    n: usize,
    cmp: F
) -> Pin<Box<dyn Future<Output = Sort<Self::Item, F>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: Fn<(&Self::Item, &Self::Item), Output = Ordering> + Clone + ProcessSend + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: Clone,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn count<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = usize> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn sum<'life0, 'async_trait, P, S>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = S> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    S: Sum<Self::Item> + Sum<S> + ProcessSend + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn mean<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = f64> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: DistributedStream<Item = f64> + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn stddev<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = f64> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: DistributedStream<Item = f64> + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn combine<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut<(Self::Item, Self::Item), Output = Self::Item> + Clone + ProcessSend + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn max<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: Ord,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn max_by<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut<(&Self::Item, &Self::Item), Output = Ordering> + Clone + ProcessSend + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn max_by_key<'life0, 'async_trait, P, F, B>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut<(&Self::Item,), Output = B> + Clone + ProcessSend + 'static + 'async_trait,
    B: Ord + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn min<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: Ord,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn min_by<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut<(&Self::Item, &Self::Item), Output = Ordering> + Clone + ProcessSend + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn min_by_key<'life0, 'async_trait, P, F, B>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut<(&Self::Item,), Output = B> + Clone + ProcessSend + 'static + 'async_trait,
    B: Ord + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn most_frequent<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P,
    n: usize,
    probability: f64,
    tolerance: f64
) -> Pin<Box<dyn Future<Output = Top<Self::Item, usize>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: Hash,
    Self::Item: Eq,
    Self::Item: Clone,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn most_distinct<'life0, 'async_trait, P, A, B>(
    self,
    pool: &'life0 P,
    n: usize,
    probability: f64,
    tolerance: f64,
    error_rate: f64
) -> Pin<Box<dyn Future<Output = Top<A, HyperLogLogMagnitude<B>>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: DistributedStream<Item = (A, B)> + 'async_trait,
    A: Hash + Eq + Clone + ProcessSend + 'static + 'async_trait,
    B: Hash + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Task: 'static, 
[src]

#[must_use]
fn sample_unstable<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P,
    samples: usize
) -> Pin<Box<dyn Future<Output = SampleUnstable<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: ProcessSend,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn all<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = bool> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut<(Self::Item,), Output = bool> + Clone + ProcessSend + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn any<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = bool> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut<(Self::Item,), Output = bool> + Clone + ProcessSend + 'static + 'async_trait,
    P: ProcessPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

impl<P, F, R, Input> ParallelPipe<Input> for FlatMapSync<P, F> where
    F: FnMut<(<P as ParallelPipe<Input>>::Output,), Output = R> + Clone + Send + 'static,
    P: ParallelPipe<Input>,
    R: Iterator
[src]

type Output = <R as Iterator>::Item

type Task = FlatMapSyncTask<<P as ParallelPipe<Input>>::Task, F>

pub fn task(&self) -> <FlatMapSync<P, F> as ParallelPipe<Input>>::Task[src]

fn inspect<F>(self, f: F) -> Inspect<Self, F> where
    F: FnMut(&Self::Output) + Clone + Send + 'static, 
[src]

fn update<F>(self, f: F) -> Update<Self, F> where
    F: FnMut(&mut Self::Output) + Clone + Send + 'static, 
[src]

fn map<B, F>(self, f: F) -> Map<Self, F> where
    F: FnMut(Self::Output) -> B + Clone + Send + 'static, 
[src]

fn flat_map<B, F>(self, f: F) -> FlatMap<Self, F> where
    F: FnMut(Self::Output) -> B + Clone + Send + 'static,
    B: Stream, 
[src]

fn filter<F>(self, f: F) -> Filter<Self, F> where
    F: FnMut(&Self::Output) -> bool + Clone + Send + 'static, 
[src]

fn cloned<'a, T>(self) -> Cloned<Self, T, Input> where
    Self: ParallelPipe<&'a Input, Output = &'a T>,
    Input: 'a,
    T: Clone + 'a, 
[src]

fn left_join<K, V1, V2>(
    self,
    right: impl IntoIterator<Item = (K, V2)>
) -> LeftJoin<Self, K, V1, V2> where
    Self: ParallelPipe<Input, Output = (K, V1)>,
    K: Eq + Hash + Clone + Send + 'static,
    V1: 'static,
    V2: Clone + Send + 'static, 
[src]

fn inner_join<K, V1, V2>(
    self,
    right: impl IntoIterator<Item = (K, V2)>
) -> InnerJoin<Self, K, V1, V2> where
    Self: ParallelPipe<Input, Output = (K, V1)>,
    K: Eq + Hash + Clone + Send + 'static,
    V1: 'static,
    V2: Clone + Send + 'static, 
[src]

fn pipe<S>(self, sink: S) -> Pipe<Self, S> where
    S: ParallelSink<Self::Output>, 
[src]

fn fork<A, B, RefAItem>(
    self,
    sink: A,
    sink_ref: B
) -> Fork<Self, A, B, &'static Self::Output> where
    A: ParallelSink<Self::Output>,
    B: for<'a> ParallelSink<&'a Self::Output>, 
[src]

fn for_each<F>(self, f: F) -> ForEach<Self, F> where
    F: FnMut(Self::Output) + Clone + Send + 'static, 
[src]

fn fold<ID, F, B>(self, identity: ID, op: F) -> Fold<Self, ID, F, B> where
    F: FnMut(B, Either<Self::Output, B>) -> B + Clone + Send + 'static,
    B: Send + 'static,
    ID: FnMut() -> B + Clone + Send + 'static, 
[src]

fn group_by<S, A, B>(self, sink: S) -> GroupBy<Self, S> where
    Self: ParallelPipe<Input, Output = (A, B)>,
    S: ParallelSink<B>,
    A: Eq + Hash + Send + 'static,
    <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: Clone,
    <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: Send,
    <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: 'static,
    <S as ParallelSink<B>>::ReduceA: 'static,
    <S as ParallelSink<B>>::ReduceC: Clone,
    <S as ParallelSink<B>>::Done: Send,
    <S as ParallelSink<B>>::Done: 'static, 
[src]

fn histogram(self) -> Histogram<Self> where
    Self::Output: Hash,
    Self::Output: Ord,
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn sort_n_by<F>(self, n: usize, cmp: F) -> Sort<Self, F> where
    F: Fn(&Self::Output, &Self::Output) -> Ordering + Clone + Send + 'static,
    Self::Output: Clone,
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn count(self) -> Count<Self>[src]

fn sum<B>(self) -> Sum<Self, B> where
    B: Sum<Self::Output> + Sum<B> + Send + 'static, 
[src]

fn mean(self) -> Mean<Self> where
    Self: ParallelPipe<Input, Output = f64>, 
[src]

fn stddev(self) -> StdDev<Self> where
    Self: ParallelPipe<Input, Output = f64>, 
[src]

fn combine<F>(self, f: F) -> Combine<Self, F> where
    F: FnMut(Self::Output, Self::Output) -> Self::Output + Clone + Send + 'static,
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn max(self) -> Max<Self> where
    Self::Output: Ord,
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn max_by<F>(self, f: F) -> MaxBy<Self, F> where
    F: FnMut(&Self::Output, &Self::Output) -> Ordering + Clone + Send + 'static,
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn max_by_key<F, B>(self, f: F) -> MaxByKey<Self, F> where
    F: FnMut(&Self::Output) -> B + Clone + Send + 'static,
    B: Ord + 'static,
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn min(self) -> Min<Self> where
    Self::Output: Ord,
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn min_by<F>(self, f: F) -> MinBy<Self, F> where
    F: FnMut(&Self::Output, &Self::Output) -> Ordering + Clone + Send + 'static,
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn min_by_key<F, B>(self, f: F) -> MinByKey<Self, F> where
    F: FnMut(&Self::Output) -> B + Clone + Send + 'static,
    B: Ord + 'static,
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn most_frequent(
    self,
    n: usize,
    probability: f64,
    tolerance: f64
) -> MostFrequent<Self> where
    Self::Output: Hash,
    Self::Output: Eq,
    Self::Output: Clone,
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn most_distinct<A, B>(
    self,
    n: usize,
    probability: f64,
    tolerance: f64,
    error_rate: f64
) -> MostDistinct<Self> where
    Self: ParallelPipe<Input, Output = (A, B)>,
    A: Hash + Eq + Clone + Send + 'static,
    B: Hash + 'static, 
[src]

fn sample_unstable(self, samples: usize) -> SampleUnstable<Self> where
    Self::Output: Send,
    Self::Output: 'static, 
[src]

fn all<F>(self, f: F) -> All<Self, F> where
    F: FnMut(Self::Output) -> bool + Clone + Send + 'static, 
[src]

fn any<F>(self, f: F) -> Any<Self, F> where
    F: FnMut(Self::Output) -> bool + Clone + Send + 'static, 
[src]

fn collect<B>(self) -> Collect<Self, B> where
    B: FromParallelStream<Self::Output>, 
[src]

impl<P, F, R> ParallelStream for FlatMapSync<P, F> where
    F: FnMut<(<P as ParallelStream>::Item,), Output = R> + Clone + Send + 'static,
    P: ParallelStream,
    R: Iterator
[src]

type Item = <R as Iterator>::Item

type Task = FlatMapSyncTask<<P as ParallelStream>::Task, F>

pub fn size_hint(&self) -> (usize, Option<usize>)[src]

pub fn next_task(
    self: Pin<&mut FlatMapSync<P, F>>,
    cx: &mut Context<'_>
) -> Poll<Option<<FlatMapSync<P, F> as ParallelStream>::Task>>
[src]

#[must_use]
fn reduce<'life0, 'async_trait, P, B, R1, R3>(
    self,
    pool: &'life0 P,
    reduce_a: R1,
    reduce_c: R3
) -> Pin<Box<dyn Future<Output = B> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    B: 'async_trait,
    P: ThreadPool + 'async_trait,
    R1: ReducerSend<Self::Item> + Clone + Send + 'static + 'async_trait,
    R3: Reducer<<R1 as ReducerSend<Self::Item>>::Done, Done = B> + 'async_trait,
    Self::Task: 'static, 
[src]

#[must_use]
fn pipe<'life0, 'async_trait, P, ParSink, A>(
    self,
    pool: &'life0 P,
    sink: ParSink
) -> Pin<Box<dyn Future<Output = A> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    ParSink: ParallelSink<Self::Item, Done = A> + 'async_trait,
    A: 'async_trait,
    P: ThreadPool + 'async_trait,
    <<ParSink as ParallelSink<Self::Item>>::Pipe as ParallelPipe<Self::Item>>::Task: 'static,
    <ParSink as ParallelSink<Self::Item>>::ReduceA: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn fork<'life0, 'async_trait, P, ParSinkA, ParSinkB, A, B>(
    self,
    pool: &'life0 P,
    sink_a: ParSinkA,
    sink_b: ParSinkB
) -> Pin<Box<dyn Future<Output = (A, B)> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    A: 'async_trait,
    B: 'async_trait,
    P: ThreadPool + 'async_trait,
    ParSinkA: ParallelSink<Self::Item, Done = A> + 'async_trait,
    ParSinkB: for<'a> ParallelSink<&'a Self::Item, Done = B> + 'static + 'async_trait,
    <<ParSinkA as ParallelSink<Self::Item>>::Pipe as ParallelPipe<Self::Item>>::Task: 'static,
    <ParSinkA as ParallelSink<Self::Item>>::ReduceA: 'static,
    <ParSinkB as ParallelSink<&'static Self::Item>>::ReduceA: 'static,
    <<ParSinkB as ParallelSink<&'static Self::Item>>::Pipe as ParallelPipe<&'static Self::Item>>::Task: 'static,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn group_by<'life0, 'async_trait, P, S, A, B>(
    self,
    pool: &'life0 P,
    sink: S
) -> Pin<Box<dyn Future<Output = IndexMap<A, <S as ParallelSink<B>>::Done, RandomState>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: ParallelStream<Item = (A, B)> + 'async_trait,
    S: ParallelSink<B> + 'async_trait,
    A: Eq + Hash + Send + 'static + 'async_trait,
    B: 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: Clone,
    <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: Send,
    <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: 'static,
    <S as ParallelSink<B>>::ReduceA: 'static,
    <S as ParallelSink<B>>::ReduceC: Clone,
    <S as ParallelSink<B>>::Done: Send,
    <S as ParallelSink<B>>::Done: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn collect<'life0, 'async_trait, P, B>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = B> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    B: FromParallelStream<Self::Item> + 'async_trait,
    P: ThreadPool + 'async_trait,
    <B as FromParallelStream<Self::Item>>::ReduceA: Send,
    <B as FromParallelStream<Self::Item>>::ReduceA: 'static,
    Self::Task: 'static, 
[src]

fn inspect<F>(self, f: F) -> Inspect<Self, F> where
    F: FnMut(&Self::Item) + Clone + Send + 'static, 
[src]

fn update<F>(self, f: F) -> Update<Self, F> where
    F: FnMut(&mut Self::Item) + Clone + Send + 'static, 
[src]

fn map<B, F>(self, f: F) -> Map<Self, F> where
    F: FnMut(Self::Item) -> B + Clone + Send + 'static, 
[src]

fn flat_map<B, F>(self, f: F) -> FlatMap<Self, F> where
    F: FnMut(Self::Item) -> B + Clone + Send + 'static,
    B: Stream, 
[src]

fn filter<F>(self, f: F) -> Filter<Self, F> where
    F: FnMut(&Self::Item) -> bool + Clone + Send + 'static, 
[src]

fn left_join<K, V1, V2>(
    self,
    right: impl IntoIterator<Item = (K, V2)>
) -> LeftJoin<Self, K, V1, V2> where
    Self: ParallelStream<Item = (K, V1)>,
    K: Eq + Hash + Clone + Send + 'static,
    V1: 'static,
    V2: Clone + Send + 'static, 
[src]

fn inner_join<K, V1, V2>(
    self,
    right: impl IntoIterator<Item = (K, V2)>
) -> InnerJoin<Self, K, V1, V2> where
    Self: ParallelStream<Item = (K, V1)>,
    K: Eq + Hash + Clone + Send + 'static,
    V1: 'static,
    V2: Clone + Send + 'static, 
[src]

fn chain<C>(self, chain: C) -> Chain<Self, <C as IntoParallelStream>::ParStream> where
    C: IntoParallelStream<Item = Self::Item>, 
[src]

#[must_use]
fn for_each<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = ()> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut(Self::Item) + Clone + Send + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn fold<'life0, 'async_trait, P, ID, F, B>(
    self,
    pool: &'life0 P,
    identity: ID,
    op: F
) -> Pin<Box<dyn Future<Output = B> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut(B, Either<Self::Item, B>) -> B + Clone + Send + 'static + 'async_trait,
    B: Send + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    ID: FnMut() -> B + Clone + Send + 'static + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn histogram<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = Vec<(Self::Item, usize), Global>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Hash,
    Self::Item: Ord,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn sort_n_by<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    n: usize,
    cmp: F
) -> Pin<Box<dyn Future<Output = Sort<Self::Item, F>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: Fn(&Self::Item, &Self::Item) -> Ordering + Clone + Send + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Clone,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn count<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = usize> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn sum<'life0, 'async_trait, P, S>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = S> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    S: Sum<Self::Item> + Sum<S> + Send + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn mean<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = f64> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: ParallelStream<Item = f64> + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn stddev<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = f64> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: ParallelStream<Item = f64> + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn combine<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut(Self::Item, Self::Item) -> Self::Item + Clone + Send + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn max<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Ord,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn max_by<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut(&Self::Item, &Self::Item) -> Ordering + Clone + Send + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn max_by_key<'life0, 'async_trait, P, F, B>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut(&Self::Item) -> B + Clone + Send + 'static + 'async_trait,
    B: Ord + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn min<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Ord,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn min_by<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut(&Self::Item, &Self::Item) -> Ordering + Clone + Send + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn min_by_key<'life0, 'async_trait, P, F, B>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut(&Self::Item) -> B + Clone + Send + 'static + 'async_trait,
    B: Ord + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn most_frequent<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P,
    n: usize,
    probability: f64,
    tolerance: f64
) -> Pin<Box<dyn Future<Output = Top<Self::Item, usize>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Hash,
    Self::Item: Eq,
    Self::Item: Clone,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn most_distinct<'life0, 'async_trait, P, A, B>(
    self,
    pool: &'life0 P,
    n: usize,
    probability: f64,
    tolerance: f64,
    error_rate: f64
) -> Pin<Box<dyn Future<Output = Top<A, HyperLogLogMagnitude<B>>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: ParallelStream<Item = (A, B)> + 'async_trait,
    A: Hash + Eq + Clone + Send + 'static + 'async_trait,
    B: Hash + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Task: 'static, 
[src]

#[must_use]
fn sample_unstable<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P,
    samples: usize
) -> Pin<Box<dyn Future<Output = SampleUnstable<Self::Item>> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: Send,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn all<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = bool> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut(Self::Item) -> bool + Clone + Send + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

#[must_use]
fn any<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = bool> + 'async_trait, Global>> where
    'life0: 'async_trait,
    Self: 'async_trait,
    F: FnMut(Self::Item) -> bool + Clone + Send + 'static + 'async_trait,
    P: ThreadPool + 'async_trait,
    Self::Item: 'static,
    Self::Task: 'static, 
[src]

impl<'pin, P, F> Unpin for FlatMapSync<P, F> where
    __FlatMapSync<'pin, P, F>: Unpin
[src]

impl<P, F> UnsafeUnpin for FlatMapSync<P, F>[src]

Auto Trait Implementations

impl<P, F> RefUnwindSafe for FlatMapSync<P, F> where
    F: RefUnwindSafe,
    P: RefUnwindSafe

impl<P, F> Send for FlatMapSync<P, F> where
    F: Send,
    P: Send

impl<P, F> Sync for FlatMapSync<P, F> where
    F: Sync,
    P: Sync

impl<P, F> UnwindSafe for FlatMapSync<P, F> where
    F: UnwindSafe,
    P: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

pub fn downcast(self) -> Result<A, DowncastError>[src]

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> IntoDistributedStream for T where
    T: DistributedStream
[src]

type DistStream = T

type Item = <T as DistributedStream>::Item

pub fn into_dist_stream(self) -> <T as IntoDistributedStream>::DistStream[src]

fn par_stream_mut(&mut self) -> <&mut Self as IntoDistributedStream>::DistStream where
    &'a mut Self: for<'a> IntoDistributedStream
[src]

fn dist_stream(&self) -> <&Self as IntoDistributedStream>::DistStream where
    &'a Self: for<'a> IntoDistributedStream
[src]

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

type ParStream = T

type Item = <T as ParallelStream>::Item

pub fn into_par_stream(self) -> <T as IntoParallelStream>::ParStream[src]

fn par_stream_mut(&mut self) -> <&mut Self as IntoParallelStream>::ParStream where
    &'a mut Self: for<'a> IntoParallelStream
[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<T> Type for T where
    T: ?Sized
[src]

pub default fn meta(self: *const T) -> <T as Type>::Meta[src]

Retrieve TraitObject, Slice or Concrete meta data respectively for a type

pub default fn data(self: *const T) -> *const ()[src]

Retrieve pointer to the data

pub default fn data_mut(self: *mut T) -> *mut ()[src]

Retrieve mut pointer to the data

pub default fn dangling(t: <T as Type>::Meta) -> NonNull<T>[src]

Create a dangling non-null *const Self with the provided Self::Meta.

pub default fn fatten(thin: *mut (), t: <T as Type>::Meta) -> *mut T[src]

Create a *mut Self with the provided Self::Meta.

const METATYPE: MetaType[src]

Enum describing whether a type is TraitObject, Slice or Concrete.

type Meta: 'static

Type of metadata for type.

fn meta_type(self: *const Self) -> MetaType[src]

Helper method describing whether a type is TraitObject, Slice or Concrete.

impl<T> Type for T[src]

pub const METATYPE: MetaType[src]

Enum describing whether a type is TraitObject, Slice or Concrete.

type Meta = Concrete

Type of metadata for type.

pub fn meta(self: *const T) -> <T as Type>::Meta[src]

Retrieve TraitObject, Slice or Concrete meta data respectively for a type

pub fn data(self: *const T) -> *const ()[src]

Retrieve pointer to the data

pub fn data_mut(self: *mut T) -> *mut ()[src]

Retrieve mut pointer to the data

pub fn dangling(_t: <T as Type>::Meta) -> NonNull<T>[src]

Create a dangling non-null *const Self with the provided Self::Meta.

pub fn fatten(thin: *mut (), _t: <T as Type>::Meta) -> *mut T[src]

Create a *mut Self with the provided Self::Meta.

fn meta_type(self: *const Self) -> MetaType[src]

Helper method describing whether a type is TraitObject, Slice or Concrete.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V