memflow 0.2.0-beta9

core components of the memflow physical memory introspection framework
Documentation
//! Common type aliases for cross-platform introspection

/// Unsigned memory type. This type is guaranteed to hold a whole address of introspection target.
pub type umem = u64;

/// Signed memory type. This type is useful for address differences.
pub type imem = i64;