pub struct PassStats {
pub decls_processed: usize,
pub transformations: usize,
pub time_us: u64,
}Expand description
Statistics for a single pass.
Fields§
§decls_processed: usizeNumber of declarations processed.
transformations: usizeNumber of transformations applied.
time_us: u64Time taken in microseconds.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PassStats
impl RefUnwindSafe for PassStats
impl Send for PassStats
impl Sync for PassStats
impl Unpin for PassStats
impl UnsafeUnpin for PassStats
impl UnwindSafe for PassStats
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