[][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

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

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

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

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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