[][src]Trait heim_process::os::linux::MemoryExt

pub trait MemoryExt {
    fn shared(&self) -> Information;
fn text(&self) -> Information;
fn data(&self) -> Information; }
This is supported on Linux only.

Linux-specific extension to process Memory information.

Required methods

fn shared(&self) -> Information

This is supported on Linux only.

Returns the amount of memory that could be potentially shared with other processes.

fn text(&self) -> Information

This is supported on Linux only.

Returns TRS (text resident set) - the amount of memory devoted to executable code.

fn data(&self) -> Information

This is supported on Linux only.

Returns DRS (data resident set) - the amount of physical memory devoted to other than executable code.

Loading content...

Implementors

impl MemoryExt for Memory[src]

Loading content...