Trait mockers::Expectation [] [src]

pub trait Expectation {
    fn check_call(self: Box<Self>, args: *const u8) -> *mut u8;
    fn get_mock_id(&self) -> usize;
    fn get_method_name(&self) -> &'static str;
    fn describe(&self) -> String;
}

Required Methods

fn check_call(self: Box<Self>, args: *const u8) -> *mut u8

fn get_mock_id(&self) -> usize

fn get_method_name(&self) -> &'static str

fn describe(&self) -> String

Implementors