pub struct ProcessParameters {
pub command_line: String,
pub current_directory: String,
pub image_path: ImagePath,
}Expand description
Process parameters from PEB.
Fields§
§command_line: StringCommand line.
current_directory: StringCurrent directory.
image_path: ImagePathImage path.
Trait Implementations§
Source§impl Clone for ProcessParameters
impl Clone for ProcessParameters
Source§fn clone(&self) -> ProcessParameters
fn clone(&self) -> ProcessParameters
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ProcessParameters
impl RefUnwindSafe for ProcessParameters
impl Send for ProcessParameters
impl Sync for ProcessParameters
impl Unpin for ProcessParameters
impl UnsafeUnpin for ProcessParameters
impl UnwindSafe for ProcessParameters
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