pub struct HeapStatsUpdateParams {
pub stats_update: Vec<i64>,
}Expand description
If heap objects tracking has been started then backend may send update for one or more fragments heapStatsUpdate
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.
Trait Implementations§
Source§impl Clone for HeapStatsUpdateParams
impl Clone for HeapStatsUpdateParams
Source§fn clone(&self) -> HeapStatsUpdateParams
fn clone(&self) -> HeapStatsUpdateParams
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 HeapStatsUpdateParams
impl Debug for HeapStatsUpdateParams
Source§impl<'de> Deserialize<'de> for HeapStatsUpdateParams
impl<'de> Deserialize<'de> for HeapStatsUpdateParams
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
Source§impl PartialEq for HeapStatsUpdateParams
impl PartialEq for HeapStatsUpdateParams
Source§impl Serialize for HeapStatsUpdateParams
impl Serialize for HeapStatsUpdateParams
impl StructuralPartialEq for HeapStatsUpdateParams
Auto Trait Implementations§
impl Freeze for HeapStatsUpdateParams
impl RefUnwindSafe for HeapStatsUpdateParams
impl Send for HeapStatsUpdateParams
impl Sync for HeapStatsUpdateParams
impl Unpin for HeapStatsUpdateParams
impl UnsafeUnpin for HeapStatsUpdateParams
impl UnwindSafe for HeapStatsUpdateParams
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