pub struct ComponentSummaryProfileResult {
pub kernel: KernelStatistics,
pub principals: Vec<PrincipalSummary>,
pub unclaimed: u64,
pub performance: PerformanceImpactMetrics,
pub digest: Digest,
}
Fields§
§kernel: KernelStatistics
§principals: Vec<PrincipalSummary>
§unclaimed: u64
Amount, in bytes, of memory that is known but remained unclaimed. Should be equal to zero.
performance: PerformanceImpactMetrics
§digest: Digest
Trait Implementations§
Source§impl Default for ComponentSummaryProfileResult
impl Default for ComponentSummaryProfileResult
Source§fn default() -> ComponentSummaryProfileResult
fn default() -> ComponentSummaryProfileResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for ComponentSummaryProfileResult
impl PartialEq for ComponentSummaryProfileResult
Source§fn eq(&self, other: &ComponentSummaryProfileResult) -> bool
fn eq(&self, other: &ComponentSummaryProfileResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ComponentSummaryProfileResult
Auto Trait Implementations§
impl Freeze for ComponentSummaryProfileResult
impl RefUnwindSafe for ComponentSummaryProfileResult
impl Send for ComponentSummaryProfileResult
impl Sync for ComponentSummaryProfileResult
impl Unpin for ComponentSummaryProfileResult
impl UnwindSafe for ComponentSummaryProfileResult
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