[][src]Struct smoke::generator::Array6

pub struct Array6<G> { /* fields omitted */ }

A generator of array of size $N where elements are defined by a generator

$C (g) is effectively the same as the following generator: Vector(Constant($N), g)

Implementations

impl<G: Generator> Array6<G>[src]

pub fn new(g: G) -> Self[src]

Trait Implementations

impl<G: Clone> Clone for Array6<G>[src]

impl<T, G> Generator for Array6<G> where
    G: Generator<Item = T>, 
[src]

type Item = [T; 6]

Type generated by the generator

Auto Trait Implementations

impl<G> RefUnwindSafe for Array6<G> where
    G: RefUnwindSafe

impl<G> Send for Array6<G> where
    G: Send

impl<G> Sync for Array6<G> where
    G: Sync

impl<G> Unpin for Array6<G> where
    G: Unpin

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.