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