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