pub struct GlibcStats {
pub system_max: u64,
pub system_current: u64,
pub free_bytes: u64,
pub mmap_current: u64,
pub in_use_bytes: u64,
pub heaps: u64,
}Fields§
§system_max: u64§system_current: u64§free_bytes: u64§mmap_current: u64§in_use_bytes: u64§heaps: u64Trait Implementations§
Source§impl Clone for GlibcStats
impl Clone for GlibcStats
Source§fn clone(&self) -> GlibcStats
fn clone(&self) -> GlibcStats
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 GlibcStats
impl Debug for GlibcStats
Source§impl From<&GlibcStats> for AllocatorComparisonStats
impl From<&GlibcStats> for AllocatorComparisonStats
Source§fn from(stats: &GlibcStats) -> Self
fn from(stats: &GlibcStats) -> Self
Converts to this type from the input type.
Source§impl From<&MallocInfo> for GlibcStats
impl From<&MallocInfo> for GlibcStats
Source§fn from(info: &MallocInfo) -> Self
fn from(info: &MallocInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GlibcStats
impl RefUnwindSafe for GlibcStats
impl Send for GlibcStats
impl Sync for GlibcStats
impl Unpin for GlibcStats
impl UnsafeUnpin for GlibcStats
impl UnwindSafe for GlibcStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more