pub struct OCacheExtPassStats {
pub iterations: usize,
pub changed: bool,
pub nodes_visited: usize,
pub nodes_modified: usize,
pub time_ms: u64,
pub memory_bytes: usize,
pub errors: usize,
}Expand description
Statistics for OCacheExt passes.
Fields§
§iterations: usize§changed: bool§nodes_visited: usize§nodes_modified: usize§time_ms: u64§memory_bytes: usize§errors: usizeImplementations§
Trait Implementations§
Source§impl Clone for OCacheExtPassStats
impl Clone for OCacheExtPassStats
Source§fn clone(&self) -> OCacheExtPassStats
fn clone(&self) -> OCacheExtPassStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OCacheExtPassStats
impl Debug for OCacheExtPassStats
Source§impl Default for OCacheExtPassStats
impl Default for OCacheExtPassStats
Source§fn default() -> OCacheExtPassStats
fn default() -> OCacheExtPassStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OCacheExtPassStats
impl RefUnwindSafe for OCacheExtPassStats
impl Send for OCacheExtPassStats
impl Sync for OCacheExtPassStats
impl Unpin for OCacheExtPassStats
impl UnsafeUnpin for OCacheExtPassStats
impl UnwindSafe for OCacheExtPassStats
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