[][src]Struct amadeus::par_sink::MostDistinct

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

Implementations

impl<P> MostDistinct<P>[src]

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

Constructs a new MostDistinct.

Trait Implementations

impl<P, Item, A, B> DistributedSink<Item> for MostDistinct<P> where
    A: Clone + Hash + Eq + ProcessSend + 'static,
    B: Hash + 'static,
    P: DistributedPipe<Item, Output = (A, B)>, 
[src]

impl<P, Item, A, B> ParallelSink<Item> for MostDistinct<P> where
    A: Clone + Hash + Eq + Send + 'static,
    B: Hash + 'static,
    P: ParallelPipe<Item, Output = (A, B)>, 
[src]

Auto Trait Implementations

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

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

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

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

impl<P> UnwindSafe for MostDistinct<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>,