pub enum DataHeapStatsFragment {
OccupiedHeader {
start_position: usize,
end_position: usize,
size: usize,
id: DataHeapObjectID,
layout: Layout,
tail_size: usize,
},
FreeHeader {
start_position: usize,
end_position: usize,
size: usize,
},
Footer {
start_position: usize,
end_position: usize,
size: usize,
item_size: usize,
},
OccupiedSpace {
start_position: usize,
end_position: usize,
size: usize,
},
FreeSpace {
start_position: usize,
end_position: usize,
size: usize,
},
}Variants§
Trait Implementations§
source§impl Clone for DataHeapStatsFragment
impl Clone for DataHeapStatsFragment
source§fn clone(&self) -> DataHeapStatsFragment
fn clone(&self) -> DataHeapStatsFragment
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 DataHeapStatsFragment
impl Debug for DataHeapStatsFragment
source§impl PartialEq<DataHeapStatsFragment> for DataHeapStatsFragment
impl PartialEq<DataHeapStatsFragment> for DataHeapStatsFragment
source§fn eq(&self, other: &DataHeapStatsFragment) -> bool
fn eq(&self, other: &DataHeapStatsFragment) -> bool
This method tests for
self and other values to be equal, and is used
by ==.