pub struct MaintainReport {
pub thinned: ThinReport,
pub capped: CapReport,
pub collected: GcReport,
}Expand description
Combined outcome of a maintain pass.
Fields§
§thinned: ThinReport§capped: CapReport§collected: GcReportTrait Implementations§
Source§impl Clone for MaintainReport
impl Clone for MaintainReport
Source§fn clone(&self) -> MaintainReport
fn clone(&self) -> MaintainReport
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 MaintainReport
impl Debug for MaintainReport
Source§impl PartialEq for MaintainReport
impl PartialEq for MaintainReport
Source§fn eq(&self, other: &MaintainReport) -> bool
fn eq(&self, other: &MaintainReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MaintainReport
Auto Trait Implementations§
impl Freeze for MaintainReport
impl RefUnwindSafe for MaintainReport
impl Send for MaintainReport
impl Sync for MaintainReport
impl Unpin for MaintainReport
impl UnsafeUnpin for MaintainReport
impl UnwindSafe for MaintainReport
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