Struct amadeus_core::into_par_stream::IterParStream[][src]

pub struct IterParStream<I>(_);

Trait Implementations

impl<I: Iterator> ParallelStream for IterParStream<I> where
    I::Item: Send + 'static, 
[src]

type Item = I::Item

type Task = IterStreamTask<I::Item>

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

fn next_task(
    self: Pin<&mut Self>,
    _cx: &mut Context<'_>
) -> Poll<Option<Self::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>> where
    P: ThreadPool,
    R1: ReducerSend<Self::Item> + Clone + Send + 'static,
    R3: Reducer<<R1 as ReducerSend<Self::Item>>::Done, Done = B>,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    B: 'async_trait,
    R1: 'async_trait,
    R3: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    ParSink: ParallelSink<Self::Item, Done = A>,
    <ParSink::Pipe as ParallelPipe<Self::Item>>::Task: 'static,
    ParSink::ReduceA: 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    ParSink: 'async_trait,
    A: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    ParSinkA: ParallelSink<Self::Item, Done = A>,
    ParSinkB: for<'a> ParallelSink<&'a Self::Item, Done = B> + 'static,
    <ParSinkA::Pipe as ParallelPipe<Self::Item>>::Task: 'static,
    ParSinkA::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,
    Self: Sized,
    P: 'async_trait,
    ParSinkA: 'async_trait,
    ParSinkB: 'async_trait,
    A: 'async_trait,
    B: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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::Done>> + 'async_trait>> where
    P: ThreadPool,
    A: Eq + Hash + Send + 'static,
    B: 'static,
    S: ParallelSink<B>,
    <S::Pipe as ParallelPipe<B>>::Task: Clone + Send + 'static,
    S::ReduceA: 'static,
    S::ReduceC: Clone,
    S::Done: Send + 'static,
    Self::Task: 'static,
    Self: ParallelStream<Item = (A, B)> + Sized,
    P: 'async_trait,
    S: 'async_trait,
    A: 'async_trait,
    B: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

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

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

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

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

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

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

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

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

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

#[must_use]
fn for_each<'life0, 'async_trait, P, F>(
    self,
    pool: &'life0 P,
    f: F
) -> Pin<Box<dyn Future<Output = ()> + 'async_trait>> where
    P: ThreadPool,
    F: FnMut(Self::Item) + Clone + Send + 'static,
    Self::Item: 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    F: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    ID: FnMut() -> B + Clone + Send + 'static,
    F: FnMut(B, Either<Self::Item, B>) -> B + Clone + Send + 'static,
    B: Send + 'static,
    Self::Item: 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    ID: 'async_trait,
    F: 'async_trait,
    B: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]
fn histogram<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = Vec<(Self::Item, usize)>> + 'async_trait>> where
    P: ThreadPool,
    Self::Item: Hash + Ord + Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    F: Fn(&Self::Item, &Self::Item) -> Ordering + Clone + Send + 'static,
    Self::Item: Clone + Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    F: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

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

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

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

#[must_use]
fn stddev<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = f64> + 'async_trait>> where
    P: ThreadPool,
    Self::Item: 'static,
    Self::Task: 'static,
    Self: ParallelStream<Item = f64> + Sized,
    P: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    F: FnMut(Self::Item, Self::Item) -> Self::Item + Clone + Send + 'static,
    Self::Item: Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    F: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]
fn max<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait>> where
    P: ThreadPool,
    Self::Item: Ord + Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    F: FnMut(&Self::Item, &Self::Item) -> Ordering + Clone + Send + 'static,
    Self::Item: Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    F: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    F: FnMut(&Self::Item) -> B + Clone + Send + 'static,
    B: Ord + 'static,
    Self::Item: Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    F: 'async_trait,
    B: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]
fn min<'life0, 'async_trait, P>(
    self,
    pool: &'life0 P
) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + 'async_trait>> where
    P: ThreadPool,
    Self::Item: Ord + Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    F: FnMut(&Self::Item, &Self::Item) -> Ordering + Clone + Send + 'static,
    Self::Item: Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    F: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    F: FnMut(&Self::Item) -> B + Clone + Send + 'static,
    B: Ord + 'static,
    Self::Item: Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    F: 'async_trait,
    B: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    Self::Item: Hash + Eq + Clone + Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    Self: ParallelStream<Item = (A, B)> + Sized,
    A: Hash + Eq + Clone + Send + 'static,
    B: Hash + 'static,
    Self::Task: 'static,
    P: 'async_trait,
    A: 'async_trait,
    B: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[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>> where
    P: ThreadPool,
    Self::Item: Send + 'static,
    Self::Task: 'static,
    Self: Sized,
    P: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

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

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

impl<I> PinnedDrop for IterParStream<I>[src]

unsafe fn drop(self: Pin<&mut Self>)[src]

impl<'pin, I> Unpin for IterParStream<I> where
    __IterParStream<'pin, I>: Unpin
[src]

impl<I> UnsafeUnpin for IterParStream<I>[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for IterParStream<I> where
    I: RefUnwindSafe

impl<I> Send for IterParStream<I> where
    I: Send

impl<I> Sync for IterParStream<I> where
    I: Sync

impl<I> UnwindSafe for IterParStream<I> where
    I: 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<T> From<T> for T[src]

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

Performs the conversion.

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

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

Performs the conversion.

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: IntoParallelStream
[src]

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V