[][src]Struct smoke::generator::Vector

pub struct Vector<SZ, G> { /* fields omitted */ }

A generator of vector of T

Trait Implementations

impl<SZ: Clone, G: Clone> Clone for Vector<SZ, G>[src]

impl<T, SZ, G> Generator for Vector<SZ, G> where
    SZ: Generator<Item = usize>,
    G: Generator<Item = T>, 
[src]

type Item = Vec<T>

Type generated by the generator

Auto Trait Implementations

impl<SZ, G> RefUnwindSafe for Vector<SZ, G> where
    G: RefUnwindSafe,
    SZ: RefUnwindSafe

impl<SZ, G> Send for Vector<SZ, G> where
    G: Send,
    SZ: Send

impl<SZ, G> Sync for Vector<SZ, G> where
    G: Sync,
    SZ: Sync

impl<SZ, G> Unpin for Vector<SZ, G> where
    G: Unpin,
    SZ: Unpin

impl<SZ, G> UnwindSafe for Vector<SZ, G> where
    G: UnwindSafe,
    SZ: 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.