pub struct SlotTableDebugStats {Show 36 fields
pub group_count: usize,
pub group_capacity: usize,
pub group_record_size: usize,
pub group_heap_bytes: usize,
pub payload_count: usize,
pub payload_capacity: usize,
pub active_payload_anchor_count: usize,
pub payload_anchor_slot_count: usize,
pub detached_payload_anchor_count: usize,
pub invalidated_payload_anchor_count: usize,
pub free_payload_anchor_count: usize,
pub payload_anchor_capacity: usize,
pub payload_anchor_heap_bytes: usize,
pub node_count: usize,
pub node_capacity: usize,
pub pending_drop_count: usize,
pub pending_drop_capacity: usize,
pub active_anchor_count: usize,
pub anchor_slot_count: usize,
pub anchor_sparse_count: usize,
pub detached_anchor_count: usize,
pub invalidated_anchor_count: usize,
pub free_anchor_count: usize,
pub anchor_capacity: usize,
pub anchor_heap_bytes: usize,
pub scope_index_count: usize,
pub scope_index_capacity: usize,
pub retained_subtree_count: usize,
pub retained_group_count: usize,
pub retained_payload_count: usize,
pub retained_node_count: usize,
pub retained_scope_count: usize,
pub retained_anchor_count: usize,
pub retained_heap_bytes: usize,
pub retained_evictions_total: usize,
pub mutation: SlotTableMutationDebugStats,
}Fields§
§group_count: usize§group_capacity: usize§group_record_size: usize§group_heap_bytes: usize§payload_count: usize§payload_capacity: usize§active_payload_anchor_count: usize§payload_anchor_slot_count: usize§detached_payload_anchor_count: usize§invalidated_payload_anchor_count: usize§free_payload_anchor_count: usize§payload_anchor_capacity: usize§payload_anchor_heap_bytes: usize§node_count: usize§node_capacity: usize§pending_drop_count: usize§pending_drop_capacity: usize§active_anchor_count: usize§anchor_slot_count: usize§anchor_sparse_count: usize§detached_anchor_count: usize§invalidated_anchor_count: usize§free_anchor_count: usize§anchor_capacity: usize§anchor_heap_bytes: usize§scope_index_count: usize§scope_index_capacity: usize§retained_subtree_count: usize§retained_group_count: usize§retained_payload_count: usize§retained_node_count: usize§retained_scope_count: usize§retained_anchor_count: usize§retained_heap_bytes: usize§retained_evictions_total: usize§mutation: SlotTableMutationDebugStatsTrait Implementations§
Source§impl Clone for SlotTableDebugStats
impl Clone for SlotTableDebugStats
Source§fn clone(&self) -> SlotTableDebugStats
fn clone(&self) -> SlotTableDebugStats
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 SlotTableDebugStats
impl Debug for SlotTableDebugStats
Source§impl Default for SlotTableDebugStats
impl Default for SlotTableDebugStats
Source§fn default() -> SlotTableDebugStats
fn default() -> SlotTableDebugStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for SlotTableDebugStats
impl PartialEq for SlotTableDebugStats
impl Copy for SlotTableDebugStats
impl Eq for SlotTableDebugStats
impl StructuralPartialEq for SlotTableDebugStats
Auto Trait Implementations§
impl Freeze for SlotTableDebugStats
impl RefUnwindSafe for SlotTableDebugStats
impl Send for SlotTableDebugStats
impl Sync for SlotTableDebugStats
impl Unpin for SlotTableDebugStats
impl UnsafeUnpin for SlotTableDebugStats
impl UnwindSafe for SlotTableDebugStats
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