#[repr(C)]pub struct TEB {
pub ProcessEnvironmentBlock: *mut PEB,
/* private fields */
}Expand description
Thread Environment Block
Fields§
§ProcessEnvironmentBlock: *mut PEBPointer to the Process Environment Block (PEB) of the current process.
This field provides access to the process-wide data structure that holds information such as loaded modules, process parameters, and environment variables.
Auto Trait Implementations§
impl Freeze for TEB
impl RefUnwindSafe for TEB
impl !Send for TEB
impl !Sync for TEB
impl Unpin for TEB
impl UnwindSafe for TEB
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