Skip to main content

Peb

Struct Peb 

Source
#[repr(C)]
pub struct Peb { pub _reserved1: [u8; 2], pub being_debugged: u8, pub _reserved2: [u8; 1], pub _reserved3: [*mut c_void; 2], pub ldr: *mut PebLdrData, }
Expand description

PEB prefix through Ldr.

winternl.h: BYTE Reserved1[2], BYTE BeingDebugged, BYTE Reserved2[1], PVOID Reserved3[2], PPEB_LDR_DATA Ldr. repr(C) supplies the 4-byte x64 alignment pad after Reserved2, so Ldr lands at 0x18 on x64 and 0x0C on x86. Source: https://learn.microsoft.com/en-us/windows/win32/api/winternl/ns-winternl-peb

Fields§

§_reserved1: [u8; 2]§being_debugged: u8§_reserved2: [u8; 1]§_reserved3: [*mut c_void; 2]§ldr: *mut PebLdrData

Auto Trait Implementations§

§

impl !Send for Peb

§

impl !Sync for Peb

§

impl Freeze for Peb

§

impl RefUnwindSafe for Peb

§

impl Unpin for Peb

§

impl UnsafeUnpin for Peb

§

impl UnwindSafe for Peb

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.