Struct mockers::Call [] [src]

pub struct Call {
    pub mock_id: usize,
    pub mock_type_id: usize,
    pub method_name: &'static str,
    pub args_ptr: *const u8,
    pub destroy: fn(*const u8),
    pub format_args: fn(*const u8) -> String,
}

Fields

Methods

impl Call
[src]

Trait Implementations

impl Drop for Call
[src]

A method called when the value goes out of scope. Read more