pub struct OCacheX2PassStats {
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 OCacheX2 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 OCacheX2PassStats
impl Clone for OCacheX2PassStats
Source§fn clone(&self) -> OCacheX2PassStats
fn clone(&self) -> OCacheX2PassStats
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 OCacheX2PassStats
impl Debug for OCacheX2PassStats
Source§impl Default for OCacheX2PassStats
impl Default for OCacheX2PassStats
Source§fn default() -> OCacheX2PassStats
fn default() -> OCacheX2PassStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OCacheX2PassStats
impl RefUnwindSafe for OCacheX2PassStats
impl Send for OCacheX2PassStats
impl Sync for OCacheX2PassStats
impl Unpin for OCacheX2PassStats
impl UnsafeUnpin for OCacheX2PassStats
impl UnwindSafe for OCacheX2PassStats
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