pub struct MemoryUse {
pub resident: Option<i64>,
pub counted: Option<i64>,
}
Expand description
How much RAM is the application using?
Fields§
§resident: Option<i64>
Bytes allocated by the application according to operating system.
Resident Set Size (RSS) on Linux, Android, Mac, iOS. Working Set on Windows.
None
if unknown.
counted: Option<i64>
Bytes used by the application according to our own memory allocator’s accounting.
This can be smaller than Self::resident
because our memory allocator may not
return all the memory we free to the OS.
None
if crate::AccountingAllocator
is not used.
Implementations§
source§impl MemoryUse
impl MemoryUse
sourcepub fn used(&self) -> Option<i64>
pub fn used(&self) -> Option<i64>
Bytes used by the application according to our best estimate.
This is either Self::counted
if it’s available, otherwise fallbacks to
Self::resident
if that’s available, otherwise None
.
Trait Implementations§
source§impl PartialEq for MemoryUse
impl PartialEq for MemoryUse
impl Copy for MemoryUse
impl Eq for MemoryUse
impl StructuralPartialEq for MemoryUse
Auto Trait Implementations§
impl Freeze for MemoryUse
impl RefUnwindSafe for MemoryUse
impl Send for MemoryUse
impl Sync for MemoryUse
impl Unpin for MemoryUse
impl UnwindSafe for MemoryUse
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