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