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