/// macOS-specific extension to process [Memory] information.
////// [Memory]: ../../struct.Memory.html
#[heim_derive::os_ext_for(crate::Memory,cfg(target_os ="macos"))]pubtraitMemoryExt{/// Returns the amount of page faults.
fnfaults(&self)->u64;/// Returns the amount of actual pageins.
fnpageins(&self)->u64;}