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 for CallTracker
impl PartialEq 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 ==
.impl Eq for CallTracker
impl StructuralPartialEq for CallTracker
Auto Trait Implementations§
impl Freeze for CallTracker
impl RefUnwindSafe for CallTracker
impl Send for CallTracker
impl Sync for CallTracker
impl Unpin for CallTracker
impl UnwindSafe for CallTracker
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more