pub trait RtlUserProcessParameters<Layout>where
Layout: StructLayout,{
const OFFSET_CURRENT_DIRECTORY: u64;
const OFFSET_DLL_PATH: u64;
const OFFSET_IMAGE_PATH_NAME: u64;
const OFFSET_COMMAND_LINE: u64;
}Expand description
Field offsets for a _RTL_USER_PROCESS_PARAMETERS structure.
Required Associated Constants§
Sourceconst OFFSET_CURRENT_DIRECTORY: u64
const OFFSET_CURRENT_DIRECTORY: u64
Offset of the CurrentDirectory field.
Sourceconst OFFSET_DLL_PATH: u64
const OFFSET_DLL_PATH: u64
Offset of the DllPath field.
Sourceconst OFFSET_IMAGE_PATH_NAME: u64
const OFFSET_IMAGE_PATH_NAME: u64
Offset of the ImagePathName field.
Sourceconst OFFSET_COMMAND_LINE: u64
const OFFSET_COMMAND_LINE: u64
Offset of the CommandLine field.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".