#[repr(C)]pub struct Peb {
pub being_debugged: bool,
pub image_base_address: *const (),
pub ldr_data: &'static PebLdrData,
/* private fields */
}
Expand description
Process Environmental Block.
Fields
being_debugged: bool
If process is being debugged.
image_base_address: *const ()
Base address of loaded image.
ldr_data: &'static PebLdrData
Ldr data
Auto Trait Implementations
impl RefUnwindSafe for Peb
impl !Send for Peb
impl !Sync for Peb
impl Unpin for Peb
impl UnwindSafe for Peb
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more