[][src]Struct mockall_examples::MockFoo

pub struct MockFoo { /* fields omitted */ }

Methods

impl MockFoo[src]

pub fn checkpoint(&mut self)[src]

pub fn new() -> Self[src]

impl MockFoo[src]

pub fn expect_foo(&mut self) -> &mut Expectation[src]

pub fn expect_bar(&mut self) -> &mut Expectation[src]

pub fn expect_baz(&mut self) -> &mut Expectation[src]

pub fn expect_bean(&mut self) -> &mut Expectation[src]

pub fn expect_bang<'guard>() -> ExpectationGuard<'guard>[src]

Trait Implementations

impl Foo for MockFoo[src]

impl Default for MockFoo[src]

Auto Trait Implementations

impl Send for MockFoo

impl Unpin for MockFoo

impl Sync for MockFoo

impl !UnwindSafe for MockFoo

impl !RefUnwindSafe for MockFoo

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