pub struct Expectation { /* private fields */ }
Expand description
Expectation type for methods that return a 'static
type.
This is the type returned by the expect_*
methods.
Implementations§
source§impl Expectation
impl Expectation
sourcepub fn return_const<MockallOutput>(
&mut self,
__mockall_c: MockallOutput,
) -> &mut Self
pub fn return_const<MockallOutput>( &mut self, __mockall_c: MockallOutput, ) -> &mut Self
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)
.
sourcepub fn return_const_st<MockallOutput>(
&mut self,
__mockall_c: MockallOutput,
) -> &mut Self
pub fn return_const_st<MockallOutput>( &mut self, __mockall_c: MockallOutput, ) -> &mut Self
Single-threaded version of
return_const
. This is useful for
return types that are not Send
.
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)
.
It is a runtime error to call the mock method from a different thread than the one that originally called this method.
sourcepub fn return_once<MockallF>(&mut self, __mockall_f: MockallF) -> &mut Self
pub fn return_once<MockallF>(&mut self, __mockall_f: MockallF) -> &mut Self
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.
sourcepub fn return_once_st<MockallF>(&mut self, __mockall_f: MockallF) -> &mut Self
pub fn return_once_st<MockallF>(&mut self, __mockall_f: MockallF) -> &mut Self
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.
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 will provide the return value for this
Expectation
. The method’s arguments are passed to the
closure by value.
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
.
It is a runtime error to call the mock method from a different thread than the one that originally called this method.
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<Uuid> + Send + 'static, MockallMatcher1: Predicate<Notification> + Send + 'static>(
&mut self,
uaid: MockallMatcher0,
message: MockallMatcher1,
) -> &mut Self
pub fn with<MockallMatcher0: Predicate<Uuid> + Send + 'static, MockallMatcher1: Predicate<Notification> + Send + 'static>( &mut self, uaid: MockallMatcher0, message: MockallMatcher1, ) -> &mut Self
Set matching criteria 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§
§impl<T> AnySync for T
impl<T> AnySync for T
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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