Trait std::os::windows::process::CommandExt1.16.0 [] [src]

pub trait CommandExt {
    fn creation_flags(&mut self, flags: u32) -> &mut Command;
}

Windows-specific extensions to the std::process::Command builder

Required Methods

Sets the process creation flags to be passed to CreateProcess.

These will always be ORed with CREATE_UNICODE_ENVIRONMENT.

Implementors