pub struct CallTracker {
pub seen_count: u32,
pub executed_count: u32,
}
Fields§
§seen_count: u32
§executed_count: u32
Trait Implementations§
source§impl Debug for CallTracker
impl Debug for CallTracker
source§impl Default for CallTracker
impl Default for CallTracker
source§fn default() -> CallTracker
fn default() -> CallTracker
Returns the “default value” for a type. Read more
source§impl PartialEq<CallTracker> for CallTracker
impl PartialEq<CallTracker> for CallTracker
source§fn eq(&self, other: &CallTracker) -> bool
fn eq(&self, other: &CallTracker) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.