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