pub struct VMStats {
pub instructions_executed: usize,
pub stack_size: usize,
pub memory_usage: usize,
pub call_depth: usize,
}
Fields§
§instructions_executed: usize
§stack_size: usize
§memory_usage: usize
§call_depth: usize
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VMStats
impl RefUnwindSafe for VMStats
impl Send for VMStats
impl Sync for VMStats
impl Unpin for VMStats
impl UnwindSafe for VMStats
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