pub struct AllGcCohortStats {
pub new: usize,
pub survival: usize,
pub old1: usize,
pub old: usize,
}Expand description
Diagnostic counts for the allgc list split by generational cursors.
Fields§
§new: usize§survival: usize§old1: usize§old: usizeTrait Implementations§
Source§impl Clone for AllGcCohortStats
impl Clone for AllGcCohortStats
Source§fn clone(&self) -> AllGcCohortStats
fn clone(&self) -> AllGcCohortStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AllGcCohortStats
impl Debug for AllGcCohortStats
Source§impl Default for AllGcCohortStats
impl Default for AllGcCohortStats
Source§fn default() -> AllGcCohortStats
fn default() -> AllGcCohortStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for AllGcCohortStats
impl PartialEq for AllGcCohortStats
Source§fn eq(&self, other: &AllGcCohortStats) -> bool
fn eq(&self, other: &AllGcCohortStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AllGcCohortStats
impl Eq for AllGcCohortStats
impl StructuralPartialEq for AllGcCohortStats
Auto Trait Implementations§
impl Freeze for AllGcCohortStats
impl RefUnwindSafe for AllGcCohortStats
impl Send for AllGcCohortStats
impl Sync for AllGcCohortStats
impl Unpin for AllGcCohortStats
impl UnsafeUnpin for AllGcCohortStats
impl UnwindSafe for AllGcCohortStats
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