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