pub struct VmReturnStats {
pub total_entries: u64,
pub thin_entries: u64,
pub parent_thin_entries: u64,
pub thin_fast_returns: u64,
pub parent_thin_fast_returns: u64,
pub young_truncate_fast_returns: u64,
pub thin_slow_returns: u64,
pub parent_thin_slow_returns: u64,
pub regular_slow_returns: u64,
}Fields§
§total_entries: u64§thin_entries: u64§parent_thin_entries: u64§thin_fast_returns: u64§parent_thin_fast_returns: u64§young_truncate_fast_returns: u64§thin_slow_returns: u64§parent_thin_slow_returns: u64§regular_slow_returns: u64Trait Implementations§
Source§impl Clone for VmReturnStats
impl Clone for VmReturnStats
Source§fn clone(&self) -> VmReturnStats
fn clone(&self) -> VmReturnStats
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 VmReturnStats
impl Debug for VmReturnStats
Source§impl Default for VmReturnStats
impl Default for VmReturnStats
Source§fn default() -> VmReturnStats
fn default() -> VmReturnStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VmReturnStats
impl RefUnwindSafe for VmReturnStats
impl Send for VmReturnStats
impl Sync for VmReturnStats
impl Unpin for VmReturnStats
impl UnsafeUnpin for VmReturnStats
impl UnwindSafe for VmReturnStats
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