[][src]Struct smoke::Ensure

pub struct Ensure<G: Generator, F> { /* fields omitted */ }

A testable statement binding a generator with a property

Trait Implementations

impl<T, G, F, P> Testable for Ensure<G, F> where
    G: Generator<Item = T>,
    P: Property,
    F: Fn(&T) -> P,
    T: Debug + 'static, 
[src]

Auto Trait Implementations

impl<G, F> RefUnwindSafe for Ensure<G, F> where
    F: RefUnwindSafe,
    G: RefUnwindSafe

impl<G, F> Send for Ensure<G, F> where
    F: Send,
    G: Send

impl<G, F> Sync for Ensure<G, F> where
    F: Sync,
    G: Sync

impl<G, F> Unpin for Ensure<G, F> where
    F: Unpin,
    G: Unpin

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