[][src]Trait heim::memory::os::macos::MemoryExt

pub trait MemoryExt {
    fn active(&self) -> Information;
fn inactive(&self) -> Information;
fn wire(&self) -> Information; }

MacOS-specific extension to [Memory]

Required methods

fn active(&self) -> Information

Returns memory currently in use or very recently used, and so it is in RAM.

fn inactive(&self) -> Information

Returns memory that is marked as not used.

fn wire(&self) -> Information

Returns memory that is marked to always stay in RAM. It is never moved to disk.

Loading content...

Implementors

impl MemoryExt for Memory[src]

Loading content...