pub struct HeapStatsUpdate {
pub stats_update: Vec<i64>,
}Expand description
If heap objects tracking has been started then backend may send update for one or more fragments
Fields§
§stats_update: Vec<i64>An array of triplets. Each triplet describes a fragment. The first integer is the fragment index, the second integer is a total count of objects for the fragment, the third integer is a total size of the objects for the fragment.
Implementations§
Trait Implementations§
Source§impl Clone for HeapStatsUpdate
impl Clone for HeapStatsUpdate
Source§fn clone(&self) -> HeapStatsUpdate
fn clone(&self) -> HeapStatsUpdate
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 HeapStatsUpdate
impl Debug for HeapStatsUpdate
Source§impl<'de> Deserialize<'de> for HeapStatsUpdate
impl<'de> Deserialize<'de> for HeapStatsUpdate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HeapStatsUpdate
impl RefUnwindSafe for HeapStatsUpdate
impl Send for HeapStatsUpdate
impl Sync for HeapStatsUpdate
impl Unpin for HeapStatsUpdate
impl UnsafeUnpin for HeapStatsUpdate
impl UnwindSafe for HeapStatsUpdate
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