[][src]Struct pubnub_hyper::core::mock::transport::__mock_Transport::call::Expectation

pub struct Expectation<TReq, TRes> where
    TReq: 'static,
    TRes: 'static, 
{ /* fields omitted */ }

Expectation type for methods that return a 'static type. This is the type returned by the expect_* methods.

Methods

impl<TReq, TRes> Expectation<TReq, TRes> where
    TReq: 'static,
    TRes: 'static, 
[src]

pub fn return_const<MockallOutput>(
    &mut self,
    __mockall_c: MockallOutput
) -> &mut Expectation<TReq, TRes> where
    MockallOutput: Clone + Into<Pin<Box<dyn Future<Output = Result<TRes, MockTransportError>> + 'static + Send>>> + Send + 'static, 
[src]

Return a constant value from the Expectation

The output type must be Clone. The compiler can't always infer the proper type to use with this method; you will usually need to specify it explicitly. i.e. return_const(42i32) instead of return_const(42).

pub fn return_once<MockallF>(
    &mut self,
    __mockall_f: MockallF
) -> &mut Expectation<TReq, TRes> where
    MockallF: FnOnce(TReq) -> Pin<Box<dyn Future<Output = Result<TRes, MockTransportError>> + 'static + Send>> + Send + 'static, 
[src]

Supply an FnOnce closure that will provide the return value for this Expectation. This is useful for return types that aren't Clone. It will be an error to call this method multiple times.

pub fn return_once_st<MockallF>(
    &mut self,
    __mockall_f: MockallF
) -> &mut Expectation<TReq, TRes> where
    MockallF: FnOnce(TReq) -> Pin<Box<dyn Future<Output = Result<TRes, MockTransportError>> + 'static + Send>> + 'static, 
[src]

Single-threaded version of return_once. This is useful for return types that are neither Send nor Clone.

It is a runtime error to call the mock method from a different thread than the one that originally called this method. It is also a runtime error to call the method more than once.

pub fn returning<MockallF>(
    &mut self,
    __mockall_f: MockallF
) -> &mut Expectation<TReq, TRes> where
    MockallF: FnMut(TReq) -> Pin<Box<dyn Future<Output = Result<TRes, MockTransportError>> + 'static + Send>> + Send + 'static, 
[src]

Supply a closure that will provide the return value for this Expectation. The method's arguments are passed to the closure by value.

pub fn returning_st<MockallF>(
    &mut self,
    __mockall_f: MockallF
) -> &mut Expectation<TReq, TRes> where
    MockallF: FnMut(TReq) -> Pin<Box<dyn Future<Output = Result<TRes, MockTransportError>> + 'static + Send>> + 'static, 
[src]

Single-threaded version of returning. Can be used when the argument or return type isn't Send.

It is a runtime error to call the mock method from a different thread than the one that originally called this method.

pub fn in_sequence(
    &mut self,
    __mockall_seq: &mut Sequence
) -> &mut Expectation<TReq, TRes>
[src]

Add this expectation to a Sequence.

pub fn never(&mut self) -> &mut Expectation<TReq, TRes>[src]

Forbid this expectation from ever being called.

pub fn new() -> Expectation<TReq, TRes>[src]

Create a new, default, Expectation

pub fn once(&mut self) -> &mut Expectation<TReq, TRes>[src]

Expect this expectation to be called exactly once. Shortcut for times(1).

pub fn times<MockallR>(
    &mut self,
    __mockall_r: MockallR
) -> &mut Expectation<TReq, TRes> where
    MockallR: Into<TimesRange>, 
[src]

Restrict the number of times that that this method may be called.

The argument may be:

  • A fixed number: .times(4)
  • Various types of range:
    • .times(5..10)
    • .times(..10)
    • .times(5..)
    • .times(5..=10)
    • .times(..=10)
  • The wildcard: .times(..)

pub fn times_any(&mut self) -> &mut Expectation<TReq, TRes>[src]

Deprecated since 0.3.0:

Use times instead

Allow this expectation to be called any number of times

This behavior is the default, but the method is provided in case the default behavior changes.

pub fn times_range(
    &mut self,
    __mockall_range: Range<usize>
) -> &mut Expectation<TReq, TRes>
[src]

Deprecated since 0.3.0:

Use times instead

Allow this expectation to be called any number of times within a given range

pub fn with<MockallMatcher0>(
    &mut self,
    request: MockallMatcher0
) -> &mut Expectation<TReq, TRes> where
    MockallMatcher0: 'static + Send + Predicate<TReq>, 
[src]

Set matching crieteria for this Expectation.

The matching predicate can be anything implemening the Predicate trait. Only one matcher can be set per Expectation at a time.

pub fn withf<MockallF>(
    &mut self,
    __mockall_f: MockallF
) -> &mut Expectation<TReq, TRes> where
    MockallF: Fn(&TReq) -> bool + Send + 'static, 
[src]

Set a matching function for this Expectation.

This is equivalent to calling with with a function argument, like with(predicate::function(f)).

Trait Implementations

impl<TReq, TRes> Default for Expectation<TReq, TRes> where
    TReq: 'static,
    TRes: 'static, 
[src]

Auto Trait Implementations

impl<TReq, TRes> RefUnwindSafe for Expectation<TReq, TRes>

impl<TReq, TRes> Send for Expectation<TReq, TRes>

impl<TReq, TRes> Sync for Expectation<TReq, TRes>

impl<TReq, TRes> Unpin for Expectation<TReq, TRes>

impl<TReq, TRes> UnwindSafe for Expectation<TReq, TRes>

Blanket Implementations

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

impl<T> Any for T where
    T: Any + ?Sized

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,