[][src]Enum mocktopus::mocking::MockResult

pub enum MockResult<T, O> {
    Continue(T),
    Return(O),
}

Controls mocked function behavior when returned from mock closure

Variants

Continue(T)

Function runs normally as if it was called with given arguments. The arguments are passed inside enum variant as a tuple.

Return(O)

Function returns immediately with a given value. The returned value is passed inside enum variant.

Auto Trait Implementations

impl<T, O> Send for MockResult<T, O> where
    O: Send,
    T: Send

impl<T, O> Sync for MockResult<T, O> where
    O: Sync,
    T: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]