#[repr(C)]pub struct Module {
pub name: String,
pub base: u64,
pub size: u64,
}Expand description
Represents a single process module with a name, base, and size
Fields§
§name: String§base: u64§size: u64Implementations§
Source§impl Module
impl Module
Sourcepub fn memory_range(&self) -> MemoryRange
pub fn memory_range(&self) -> MemoryRange
Returns the memory range of the entire module
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Module
impl RefUnwindSafe for Module
impl Send for Module
impl Sync for Module
impl Unpin for Module
impl UnwindSafe for Module
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more