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