[][src]Struct heim::process::Memory

pub struct Memory(_);

Memory information about the process.

See os-specific extensions also.

Methods

impl Memory[src]

pub fn rss(
    &self
) -> Quantity<dyn Dimension<T = Z0, N = Z0, I = Z0, L = Z0, J = Z0, Th = Z0, Kind = dyn InformationKind + 'static, M = Z0> + 'static, dyn Units<u64, luminous_intensity = candela, length = meter, electric_current = ampere, thermodynamic_temperature = kelvin, mass = kilogram, amount_of_substance = mole, time = second> + 'static, u64>
[src]

Returns resident set size, amount of non-swapped physical memory used by the process.

pub fn vms(
    &self
) -> Quantity<dyn Dimension<T = Z0, N = Z0, I = Z0, L = Z0, J = Z0, Th = Z0, Kind = dyn InformationKind + 'static, M = Z0> + 'static, dyn Units<u64, luminous_intensity = candela, length = meter, electric_current = ampere, thermodynamic_temperature = kelvin, mass = kilogram, amount_of_substance = mole, time = second> + 'static, u64>
[src]

Returns virtual memory size, total amount of memory used by the process.

Trait Implementations

impl MemoryExt for Memory[src]

impl Debug for Memory[src]

Auto Trait Implementations

impl Send for Memory

impl !Unpin for Memory

impl Sync for Memory

impl !UnwindSafe for Memory

impl !RefUnwindSafe for Memory

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self