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