pub struct VmMemoryStats {
pub state_table_entity_count: usize,
pub state_table_max_entries: usize,
pub state_table_at_capacity: bool,
pub lookup_index_count: usize,
pub lookup_index_total_entries: usize,
pub temporal_index_count: usize,
pub temporal_index_total_entries: usize,
pub pda_reverse_lookup_count: usize,
pub pda_reverse_lookup_total_entries: usize,
pub version_tracker_entries: usize,
pub pending_queue_stats: Option<PendingQueueStats>,
pub path_cache_size: usize,
}Fields§
§state_table_entity_count: usize§state_table_max_entries: usize§state_table_at_capacity: bool§lookup_index_count: usize§lookup_index_total_entries: usize§temporal_index_count: usize§temporal_index_total_entries: usize§pda_reverse_lookup_count: usize§pda_reverse_lookup_total_entries: usize§version_tracker_entries: usize§pending_queue_stats: Option<PendingQueueStats>§path_cache_size: usizeTrait Implementations§
Source§impl Clone for VmMemoryStats
impl Clone for VmMemoryStats
Source§fn clone(&self) -> VmMemoryStats
fn clone(&self) -> VmMemoryStats
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 VmMemoryStats
impl Debug for VmMemoryStats
Source§impl Default for VmMemoryStats
impl Default for VmMemoryStats
Source§fn default() -> VmMemoryStats
fn default() -> VmMemoryStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VmMemoryStats
impl RefUnwindSafe for VmMemoryStats
impl Send for VmMemoryStats
impl Sync for VmMemoryStats
impl Unpin for VmMemoryStats
impl UnwindSafe for VmMemoryStats
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