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