pub struct PromotionStats {
pub to_pool: usize,
pub to_heap: usize,
pub failed: usize,
}Expand description
Promotion statistics.
Fields§
§to_pool: usize§to_heap: usize§failed: usizeTrait Implementations§
Source§impl Clone for PromotionStats
impl Clone for PromotionStats
Source§fn clone(&self) -> PromotionStats
fn clone(&self) -> PromotionStats
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 PromotionStats
impl Debug for PromotionStats
Source§impl Default for PromotionStats
impl Default for PromotionStats
Source§fn default() -> PromotionStats
fn default() -> PromotionStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PromotionStats
impl RefUnwindSafe for PromotionStats
impl Send for PromotionStats
impl Sync for PromotionStats
impl Unpin for PromotionStats
impl UnwindSafe for PromotionStats
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