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