pub struct VmmPdb<'a> {
pub module: String,
/* private fields */
}Expand description
Debug Symbol API.
The PDB sub-system requires that MemProcFS supporting DLLs/.DYLIBs/.SOs for
debugging and symbol server are put alongside vmm.dll.
Also it’s recommended that the file info.db is put alongside vmm.dll.
§Created By
§Examples
// Retrieve the PDB struct associated with the kernel (nt).
let kernel = vmm.kernel();
let pdb = kernel.pdb();// Retrieve the PDB struct associated with a process module.
let pdb = vmmprocess.pdb_from_module_name("ntdll.dll")?;Fields§
§module: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for VmmPdb<'a>
impl<'a> RefUnwindSafe for VmmPdb<'a>
impl<'a> Send for VmmPdb<'a>
impl<'a> Sync for VmmPdb<'a>
impl<'a> Unpin for VmmPdb<'a>
impl<'a> UnwindSafe for VmmPdb<'a>
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