pub struct MallocInfo(pub Malloc);Tuple Fields§
§0: MallocImplementations§
Source§impl MallocInfo
impl MallocInfo
pub fn system_max(&self) -> u64
pub fn system_current(&self) -> u64
pub fn total(&self) -> u64
pub fn free_bytes(&self) -> u64
pub fn mmap_bytes(&self) -> u64
pub fn in_use_bytes(&self) -> u64
pub fn heaps(&self) -> u64
Trait Implementations§
Source§impl Debug for MallocInfo
impl Debug for MallocInfo
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 MallocInfo
impl RefUnwindSafe for MallocInfo
impl Send for MallocInfo
impl Sync for MallocInfo
impl Unpin for MallocInfo
impl UnsafeUnpin for MallocInfo
impl UnwindSafe for MallocInfo
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> 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