Trait criterion_stats::tuple::Tuple[][src]

pub trait Tuple: Sized {
    type Distributions: TupledDistributions<Item = Self>;
    type Builder: TupledDistributionsBuilder<Item = Self>;
}

Any tuple: (A, B, ..)

Associated Types

A tuple of distributions associated with this tuple

A tuple of vectors associated with this tuple

Implementations on Foreign Types

impl<A> Tuple for (A,) where
    A: Copy
[src]

impl<A, B> Tuple for (A, B) where
    A: Copy,
    B: Copy
[src]

impl<A, B, C> Tuple for (A, B, C) where
    A: Copy,
    B: Copy,
    C: Copy
[src]

impl<A, B, C, D> Tuple for (A, B, C, D) where
    A: Copy,
    B: Copy,
    C: Copy,
    D: Copy
[src]

Implementors