Struct mockall::Sequence[][src]

pub struct Sequence { /* fields omitted */ }

Used to enforce that mock calls must happen in the sequence specified.

Each expectation must expect to be called a fixed number of times. Once satisfied, the next expectation in the sequence will expect to be called.

Examples

#[automock]
trait Foo {
    fn foo(&self);
    fn bar(&self) -> u32;
}
let mut seq = Sequence::new();

let mut mock0 = MockFoo::new();
let mut mock1 = MockFoo::new();

mock0.expect_foo()
    .times(1)
    .returning(|| ())
    .in_sequence(&mut seq);

mock1.expect_bar()
    .times(1)
    .returning(|| 42)
    .in_sequence(&mut seq);

mock0.foo();
mock1.bar();

It is an error to add an expectation to a Sequence if its call count is unspecified.

#[automock]
trait Foo {
    fn foo(&self);
}
let mut seq = Sequence::new();

let mut mock = MockFoo::new();
mock.expect_foo()
    .returning(|| ())
    .in_sequence(&mut seq);  // panics!

Implementations

impl Sequence[src]

pub fn new() -> Self[src]

Trait Implementations

impl Default for Sequence[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.