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