Struct intuicio_data::data_heap::DataHeapStatsPage
source · pub struct DataHeapStatsPage {
pub page_capacity: usize,
pub position: usize,
pub total_allocated_size: usize,
pub total_free_size: usize,
pub allocated_size: usize,
pub free_size: usize,
pub occupied_fragments: usize,
pub free_fragments: usize,
pub fragments: Vec<DataHeapStatsFragment>,
}Fields§
§page_capacity: usize§position: usize§total_allocated_size: usize§total_free_size: usize§allocated_size: usize§free_size: usize§occupied_fragments: usize§free_fragments: usize§fragments: Vec<DataHeapStatsFragment>Trait Implementations§
source§impl Clone for DataHeapStatsPage
impl Clone for DataHeapStatsPage
source§fn clone(&self) -> DataHeapStatsPage
fn clone(&self) -> DataHeapStatsPage
Returns a copy 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 DataHeapStatsPage
impl Debug for DataHeapStatsPage
source§impl PartialEq<DataHeapStatsPage> for DataHeapStatsPage
impl PartialEq<DataHeapStatsPage> for DataHeapStatsPage
source§fn eq(&self, other: &DataHeapStatsPage) -> bool
fn eq(&self, other: &DataHeapStatsPage) -> bool
This method tests for
self and other values to be equal, and is used
by ==.