Struct mockall::examples::__mock_MockFoo_Foo::__baz::Expectation
source · pub struct Expectation { /* private fields */ }
Expand description
Expectation type for methods taking a &mut self
argument and
returning references. This is the type returned by the
expect_*
methods.
Implementations§
source§impl Expectation
impl Expectation
sourcepub fn call_mut(&mut self, x: i32) -> &mut i32
pub fn call_mut(&mut self, x: i32) -> &mut i32
Simulating calling the real method for this expectation
sourcepub fn return_var(&mut self, __mockall_o: i32) -> &mut Self
pub fn return_var(&mut self, __mockall_o: i32) -> &mut Self
Convenience method that can be used to supply a return value
for a Expectation
. The value will be returned by mutable
reference.
sourcepub fn returning<MockallF>(&mut self, __mockall_f: MockallF) -> &mut Self
pub fn returning<MockallF>(&mut self, __mockall_f: MockallF) -> &mut Self
Supply a closure that the Expectation
will use to create its
return value. The return value will be returned by mutable
reference.
sourcepub fn returning_st<MockallF>(&mut self, __mockall_f: MockallF) -> &mut Self
pub fn returning_st<MockallF>(&mut self, __mockall_f: MockallF) -> &mut Self
Single-threaded version of returning
.
Can be used when the argument or return type isn’t Send
.
sourcepub fn in_sequence(&mut self, __mockall_seq: &mut Sequence) -> &mut Self
pub fn in_sequence(&mut self, __mockall_seq: &mut Sequence) -> &mut Self
Add this expectation to a
Sequence
.
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new, default, Expectation
sourcepub fn once(&mut self) -> &mut Self
pub fn once(&mut self) -> &mut Self
Expect this expectation to be called exactly once. Shortcut for
times(1)
.
sourcepub fn times<MockallR>(&mut self, __mockall_r: MockallR) -> &mut Selfwhere
MockallR: Into<TimesRange>,
pub fn times<MockallR>(&mut self, __mockall_r: MockallR) -> &mut Selfwhere
MockallR: Into<TimesRange>,
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(..)
sourcepub fn with<MockallMatcher0: Predicate<i32> + Send + 'static>(
&mut self,
x: MockallMatcher0,
) -> &mut Self
pub fn with<MockallMatcher0: Predicate<i32> + Send + 'static>( &mut self, x: MockallMatcher0, ) -> &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.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Expectation
impl !RefUnwindSafe for Expectation
impl Send for Expectation
impl Sync for Expectation
impl Unpin for Expectation
impl !UnwindSafe for Expectation
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more