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