/// A loaded module (shared library, executable, or dylib) in a process.
#[derive(Debug, Clone)]pubstructModule{/// Module file name (e.g., "libfoo.so").
pubname: String,
/// Base address where the module is loaded.
pubbase:usize,
/// Size of the module in memory (bytes).
pubsize:usize,
/// Full file path on disk.
pubpath: String,
}