[]Struct mockall_examples::__mock_Foo_Foo::bar::Expectation

pub struct Expectation { /* fields omitted */ }

Expectation type for methods taking a &self argument and returning immutable references. This is the type returned by the expect_* methods.

Methods

impl Expectation

pub fn call(&self, x: i32) -> &i32

pub fn return_const(&mut self, o: i32) -> &mut Self

Return a reference to a constant value from the Expectation

pub fn in_sequence(&mut self, seq: &mut Sequence) -> &mut Self

Add this expectation to a Sequence.

pub fn never(&mut self) -> &mut Self

Forbid this expectation from ever being called.

pub fn new() -> Self

Create a new, default, Expectation

pub fn once(&mut self) -> &mut Self

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

pub fn times(&mut self, n: usize) -> &mut Self

Expect this expectation to be called exactly n times.

pub fn times_any(&mut self) -> &mut Self

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, range: Range<usize>) -> &mut Self

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

pub fn with<p1: Predicate<i32> + Send + 'static>(&mut self, x: p1) -> &mut Self

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<F>(&mut self, f: F) -> &mut Self where
    F: Fn(&i32) -> bool + Send + 'static, 

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 Default for Expectation

Auto Trait Implementations

Blanket Implementations

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

fn type_id_compat(&self) -> TypeId[src]

TODO: once 1.33.0 is the minimum supported compiler version, remove Any::type_id_compat and use StdAny::type_id instead. https://github.com/rust-lang/rust/issues/27745 Read more