[][src]Struct amadeus::par_sink::MostFrequent

#[must_use]pub struct MostFrequent<P> { /* fields omitted */ }

Implementations

impl<P> MostFrequent<P>[src]

pub fn new(
    pipe: P,
    n: usize,
    probability: f64,
    tolerance: f64
) -> MostFrequent<P>
[src]

Constructs a new MostFrequent.

Trait Implementations

impl<P, Item> DistributedSink<Item> for MostFrequent<P> where
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: Clone,
    <P as DistributedPipe<Item>>::Output: Hash,
    <P as DistributedPipe<Item>>::Output: Eq,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

impl<P, Item> ParallelSink<Item> for MostFrequent<P> where
    P: ParallelPipe<Item>,
    <P as ParallelPipe<Item>>::Output: Clone,
    <P as ParallelPipe<Item>>::Output: Hash,
    <P as ParallelPipe<Item>>::Output: Eq,
    <P as ParallelPipe<Item>>::Output: Send,
    <P as ParallelPipe<Item>>::Output: 'static, 
[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for MostFrequent<P> where
    P: RefUnwindSafe

impl<P> Send for MostFrequent<P> where
    P: Send

impl<P> Sync for MostFrequent<P> where
    P: Sync

impl<P> Unpin for MostFrequent<P> where
    P: Unpin

impl<P> UnwindSafe for MostFrequent<P> where
    P: UnwindSafe

Blanket Implementations

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

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.

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.

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

impl<T> Type for T[src]

type Meta = Concrete

Type of metadata for type.

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